File size: 2,355 Bytes
1177bf8
c305f33
1177bf8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c305f33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
license: cc0-1.0
task_categories:
  - text-generation
  - token-classification
language:
  - en
tags:
  - funding
  - research-funding
  - scholarly-metadata
  - preprints
  - arxiv
size_categories:
  - 1K<n<10K
configs:
  - config_name: default
    data_files:
      - split: train
        path: train.jsonl
      - split: test
        path: test.jsonl
---

# Preprint Funding Metadata

A dataset of funding statements extracted from arXiv preprints with structured funder and award annotations.

## Dataset Description

This dataset contains funding statements from scientific preprints along with manually annotated structured metadata identifying funders and their associated awards.

### Data Fields

- `doi`: The DOI of the preprint (e.g., "10.48550/arxiv.2303.07677")
- `funding_statement`: The raw funding acknowledgment text extracted from the paper
- `funders`: Array of funder objects containing:
  - `funder_name`: Name of the funding organization (may be null if only a program is mentioned)
  - `awards`: Array of award objects containing:
    - `funding_scheme`: Array of funding program/scheme names
    - `award_ids`: Array of grant/award identifiers
    - `award_title`: Array of award titles (if available)

### Dataset Statistics

| Split | Examples |
|-------|----------|
| Train | 1,388 |
| Test | 347 |

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("cometadata/preprint-funding")

# Access train split
train_data = dataset["train"]

# Access test split
test_data = dataset["test"]
```

## Example

```json
{
  "doi": "10.48550/arxiv.2303.07677",
  "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.",
  "funders": [
    {
      "funder_name": null,
      "awards": [
        {
          "funding_scheme": ["Key R&D Program of Zhejiang"],
          "award_ids": ["2022C01018"],
          "award_title": []
        }
      ]
    },
    {
      "funder_name": "National Natural Science Foundation of China",
      "awards": [
        {
          "funding_scheme": [],
          "award_ids": ["U21B2001", "61973273"],
          "award_title": []
        }
      ]
    }
  ]
}
```

## License

This dataset is released under CC0 (Public Domain).