Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,62 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
- text-generation
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- agent
|
| 10 |
+
size_categories:
|
| 11 |
+
- n<1K
|
| 12 |
+
---
|
| 13 |
+
# GISA: A Benchmark for General Information-Seeking Assistant</h1>
|
| 14 |
+
|
| 15 |
+
## Benchmark Highlights
|
| 16 |
+
GISA is a benchmark for General Information-Seeking Assistants with 373 human-crafted queries that reflect real-world information needs. It includes both stable and live subsets, four structured answer formats (item, set, list, table), and complete human search trajectories for every query.
|
| 17 |
+
- **Diverse answer formats with deterministic evaluation.**
|
| 18 |
+
GISA uses four structured answer types (item, set, list, table) with strict matching metrics for reproducible evaluation, avoiding subjective LLM judging while preserving task diversity.
|
| 19 |
+
- **Unified deep + wide search capabilities.**
|
| 20 |
+
Tasks require both vertical reasoning and horizontal information aggregation across sources, evaluating long-horizon exploration and summarization in one benchmark.
|
| 21 |
+
- **Dynamic, anti-static evaluation.**
|
| 22 |
+
Queries are split into stable and live subsets; the live subset is periodically updated to reduce memorization and keep the benchmark challenging over time.
|
| 23 |
+
- **Process-level supervision via human trajectories.**
|
| 24 |
+
Full human search trajectories are provided for every query, serving as gold references for process reward modeling and imitation learning while validating task solvability.
|
| 25 |
+
|
| 26 |
+
## Evaluation
|
| 27 |
+
Please refer to our [GitHub]().
|
| 28 |
+
|
| 29 |
+
## Data Schema
|
| 30 |
+
|
| 31 |
+
#### 1. encrypted_question.jsonl
|
| 32 |
+
Each row contains:
|
| 33 |
+
- id (int): the ID of the question (it is **not** continuous)
|
| 34 |
+
- question (str): the question after encryption
|
| 35 |
+
- answer_type (str): the type of the answer, can be item, set, list, or table
|
| 36 |
+
- question_type (str): the type of the question, can be stable or live
|
| 37 |
+
- topic (str): the topic of the question, can be TV Shows \& Movies, Science \& Technology, Art, History, Sports, Music, Video Games, Geography, Politics, or Other
|
| 38 |
+
- canary (str): the password used for decryption
|
| 39 |
+
|
| 40 |
+
#### 2. answer/[id].csv
|
| 41 |
+
The file contains the answer corresponds to the question [id].
|
| 42 |
+
|
| 43 |
+
#### 3. trace/[id].json
|
| 44 |
+
The file conatins the human trajectory of the question [id], with the following keys:
|
| 45 |
+
- search (list): the queries issued by the annotator
|
| 46 |
+
- result (dict): the search result of each query
|
| 47 |
+
- click (list): the click behaviors made by the annotator
|
| 48 |
+
-
|
| 49 |
+
## Loading Method
|
| 50 |
+
```python
|
| 51 |
+
def derive_key(password: str, length: int) -> bytes:
|
| 52 |
+
hasher = hashlib.sha256()
|
| 53 |
+
hasher.update(password.encode())
|
| 54 |
+
key = hasher.digest()
|
| 55 |
+
return key * (length // len(key)) + key[: length % len(key)]
|
| 56 |
+
def decrypt(ciphertext_b64: str, password: str) -> str:
|
| 57 |
+
encrypted = base64.b64decode(ciphertext_b64)
|
| 58 |
+
key = derive_key(password, len(encrypted))
|
| 59 |
+
decrypted = bytes(a ^ b for a, b in zip(encrypted, key))
|
| 60 |
+
return decrypted.decode()
|
| 61 |
+
obj["question"] = decrypt(str(obj["question"]), str(obj["canary"]))
|
| 62 |
+
```
|