Aryaman9199 commited on
Commit
43791b5
·
verified ·
1 Parent(s): 717217b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -68
README.md CHANGED
@@ -1,68 +1,68 @@
1
- ---
2
- license: cc-by-4.0
3
- task_categories:
4
- - text-retrieval
5
- language:
6
- - en
7
- tags:
8
- - citation
9
- - retrieval
10
- - arxiv
11
- - neurips
12
- - benchmark
13
- pretty_name: FORAGE CiteBench NeurIPS25
14
- configs:
15
- - config_name: neurips25
16
- data_files:
17
- - split: cited_papers
18
- path: neurips25/cited_papers.parquet
19
- - split: source_papers
20
- path: neurips25/source_papers.parquet
21
- ---
22
-
23
- # FORAGE — CiteBench NeurIPS25
24
-
25
- A retrieval benchmark for academic citation prediction.
26
-
27
- ## Subset: `neurips25`
28
-
29
- | Split | Rows | Description |
30
- |---|---|---|
31
- | `source_papers` | 1,024 | NeurIPS 2025 papers used as queries |
32
- | `cited_papers` | 25,050 | Retrieval corpus of cited papers |
33
-
34
- ### `source_papers` columns
35
-
36
- | Column | Type | Description |
37
- |---|---|---|
38
- | `id` | string | NeurIPS 2025 submission ID |
39
- | `content` | string | Full paper text (Markdown) |
40
- | `arxiv_id` | string | arXiv identifier |
41
- | `title` | string | Paper title |
42
- | `abstract` | string | Paper abstract |
43
- | `author` | string | Semicolon-separated author names |
44
- | `first_author_last_name` | string | Last name of first author |
45
- | `related_work` | list[string] | arXiv IDs cited in Related Work — **primary eval target** |
46
- | `all_cited` | list[string] | arXiv IDs cited anywhere in the paper |
47
-
48
- ### `cited_papers` columns
49
-
50
- | Column | Type | Description |
51
- |---|---|---|
52
- | `id` | string | arXiv paper ID |
53
- | `content` | string | Full paper text (Markdown) |
54
- | `title` | string | Paper title |
55
- | `abstract` | string | Paper abstract |
56
- | `first_author_last_name` | string | Last name of first author |
57
- | `year` | int32 | Publication year |
58
- | `created` | date | arXiv submission date |
59
-
60
- ## Usage
61
-
62
- ```python
63
- from datasets import load_dataset
64
-
65
- ds = load_dataset("Aryaman9199/FORAGE", "neurips25")
66
- source_papers = ds["source_papers"]
67
- cited_papers = ds["cited_papers"]
68
- ```
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-retrieval
5
+ language:
6
+ - en
7
+ tags:
8
+ - citation
9
+ - retrieval
10
+ - arxiv
11
+ - neurips
12
+ - benchmark
13
+ pretty_name: FORAGE CiteBench NeurIPS25
14
+ configs:
15
+ - config_name: neurips25
16
+ data_files:
17
+ - split: cited_papers
18
+ path: neurips25/cited_papers.parquet
19
+ - split: source_papers
20
+ path: neurips25/source_papers.parquet
21
+ ---
22
+
23
+ # FORAGE — CiteBench NeurIPS25
24
+
25
+ An agentic retrieval benchmark based on the related works prediction task.
26
+
27
+ ## Subset: `neurips25`
28
+
29
+ | Split | Rows | Description |
30
+ |---|---|---|
31
+ | `source_papers` | 1,024 | NeurIPS 2025 papers used as queries |
32
+ | `cited_papers` | 25,050 | Retrieval corpus of cited papers |
33
+
34
+ ### `source_papers` columns
35
+
36
+ | Column | Type | Description |
37
+ |---|---|---|
38
+ | `id` | string | NeurIPS 2025 submission ID |
39
+ | `content` | string | Full paper text (Markdown) |
40
+ | `arxiv_id` | string | arXiv identifier |
41
+ | `title` | string | Paper title |
42
+ | `abstract` | string | Paper abstract |
43
+ | `author` | string | Semicolon-separated author names |
44
+ | `first_author_last_name` | string | Last name of first author |
45
+ | `related_work` | list[string] | arXiv IDs cited in Related Work — **primary eval target** |
46
+ | `all_cited` | list[string] | arXiv IDs cited anywhere in the paper |
47
+
48
+ ### `cited_papers` columns
49
+
50
+ | Column | Type | Description |
51
+ |---|---|---|
52
+ | `id` | string | arXiv paper ID |
53
+ | `content` | string | Full paper text (Markdown) |
54
+ | `title` | string | Paper title |
55
+ | `abstract` | string | Paper abstract |
56
+ | `first_author_last_name` | string | Last name of first author |
57
+ | `year` | int32 | Publication year |
58
+ | `created` | date | arXiv submission date |
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ ds = load_dataset("Aryaman9199/FORAGE", "neurips25")
66
+ source_papers = ds["source_papers"]
67
+ cited_papers = ds["cited_papers"]
68
+ ```