adambuttrick commited on
Commit
1177bf8
·
verified ·
1 Parent(s): 24f4670

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. .DS_Store +0 -0
  2. .claude/settings.local.json +10 -0
  3. README.md +98 -0
  4. test.jsonl +0 -0
  5. train.jsonl +0 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
.claude/settings.local.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(huggingface-cli whoami:*)",
5
+ "Bash(python3:*)",
6
+ "Bash(wc:*)",
7
+ "Bash(huggingface-cli upload:*)"
8
+ ]
9
+ }
10
+ }
README.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-generation
5
+ - token-classification
6
+ language:
7
+ - en
8
+ tags:
9
+ - funding
10
+ - research-funding
11
+ - scholarly-metadata
12
+ - preprints
13
+ - arxiv
14
+ size_categories:
15
+ - 1K<n<10K
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: train.jsonl
21
+ - split: test
22
+ path: test.jsonl
23
+ ---
24
+
25
+ # Preprint Funding Metadata
26
+
27
+ A dataset of funding statements extracted from arXiv preprints with structured funder and award annotations.
28
+
29
+ ## Dataset Description
30
+
31
+ This dataset contains funding statements from scientific preprints along with manually annotated structured metadata identifying funders and their associated awards.
32
+
33
+ ### Data Fields
34
+
35
+ - `doi`: The DOI of the preprint (e.g., "10.48550/arxiv.2303.07677")
36
+ - `funding_statement`: The raw funding acknowledgment text extracted from the paper
37
+ - `funders`: Array of funder objects containing:
38
+ - `funder_name`: Name of the funding organization (may be null if only a program is mentioned)
39
+ - `awards`: Array of award objects containing:
40
+ - `funding_scheme`: Array of funding program/scheme names
41
+ - `award_ids`: Array of grant/award identifiers
42
+ - `award_title`: Array of award titles (if available)
43
+
44
+ ### Dataset Statistics
45
+
46
+ | Split | Examples |
47
+ |-------|----------|
48
+ | Train | 1,388 |
49
+ | Test | 347 |
50
+
51
+ ## Usage
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ dataset = load_dataset("cometadata/preprint-funding")
57
+
58
+ # Access train split
59
+ train_data = dataset["train"]
60
+
61
+ # Access test split
62
+ test_data = dataset["test"]
63
+ ```
64
+
65
+ ## Example
66
+
67
+ ```json
68
+ {
69
+ "doi": "10.48550/arxiv.2303.07677",
70
+ "funding_statement": "This work was supported in part by the Key R&D Program of Zhejiang under Grant 2022C01018, and by the National Natural Science Foundation of China under Grants U21B2001 and 61973273.",
71
+ "funders": [
72
+ {
73
+ "funder_name": null,
74
+ "awards": [
75
+ {
76
+ "funding_scheme": ["Key R&D Program of Zhejiang"],
77
+ "award_ids": ["2022C01018"],
78
+ "award_title": []
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ "funder_name": "National Natural Science Foundation of China",
84
+ "awards": [
85
+ {
86
+ "funding_scheme": [],
87
+ "award_ids": ["U21B2001", "61973273"],
88
+ "award_title": []
89
+ }
90
+ ]
91
+ }
92
+ ]
93
+ }
94
+ ```
95
+
96
+ ## License
97
+
98
+ This dataset is released under CC-BY-4.0.
test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
train.jsonl ADDED
The diff for this file is too large to render. See raw diff