readme
Browse files
README.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
-
# Difficult Long-context Retrieval
|
| 5 |
-
This is the Dataset used in the paper "Hyper-multi-step: The Truth Behind Difficult Long-context Tasks"
|
|
|
|
| 6 |
|
| 7 |
The tasks we provide are:
|
| 8 |
|
| 9 |
-
Simple tasks which are easy for Long-Context LMs:
|
| 10 |
* ``simple_k2v``: Direct key-to-value retrieval. The key is given and the model needs to retrieve the corresponding value.
|
| 11 |
* ``simple_v2k``: Direct value-to-key retrieval. The value is given and the model needs to retrieve the corresponding key.
|
| 12 |
* ``multi_step(kv)``: multi-step (formal) KV retrieval. The model needs to retrieve multiple values with multiple queries. Then concatenate the values to form a new key, and finally retrieve the corresponding value.
|
| 13 |
|
| 14 |
-
Difficult tasks which are nearly unsolvable for Long-Context LMs:
|
| 15 |
* ``logic(kv)``: logic-based KV retrieval. All the values are in range 0-9. We give the range of the value and the model needs to retrieve the corresponding key.
|
| 16 |
* ``logic(resume)``: logic-based student resume retrieval. We give the range of the GPA and the model needs to retrieve the corresponding student whose GPA is in the range.
|
| 17 |
* ``multi_match(kv)``: multi-match KV retrieval. The value is given and the model needs to retrieve multiple corresponding keys.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
# Difficult Long-context Retrieval Tasks
|
| 5 |
+
* ๐ This is the Dataset used in the paper ["Hyper-multi-step: The Truth Behind Difficult Long-context Tasks"](https://arxiv.org/abs/2410.04422
|
| 6 |
+
* ๐ป [github](https://github.com/yuyijiong/hard_retrieval_for_llm)
|
| 7 |
|
| 8 |
The tasks we provide are:
|
| 9 |
|
| 10 |
+
๐ Simple tasks which are easy for Long-Context LMs:
|
| 11 |
* ``simple_k2v``: Direct key-to-value retrieval. The key is given and the model needs to retrieve the corresponding value.
|
| 12 |
* ``simple_v2k``: Direct value-to-key retrieval. The value is given and the model needs to retrieve the corresponding key.
|
| 13 |
* ``multi_step(kv)``: multi-step (formal) KV retrieval. The model needs to retrieve multiple values with multiple queries. Then concatenate the values to form a new key, and finally retrieve the corresponding value.
|
| 14 |
|
| 15 |
+
๐ต Difficult tasks which are nearly unsolvable for Long-Context LMs:
|
| 16 |
* ``logic(kv)``: logic-based KV retrieval. All the values are in range 0-9. We give the range of the value and the model needs to retrieve the corresponding key.
|
| 17 |
* ``logic(resume)``: logic-based student resume retrieval. We give the range of the GPA and the model needs to retrieve the corresponding student whose GPA is in the range.
|
| 18 |
* ``multi_match(kv)``: multi-match KV retrieval. The value is given and the model needs to retrieve multiple corresponding keys.
|