Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-mining
|
| 6 |
+
- other
|
| 7 |
+
tags:
|
| 8 |
+
- scientific-papers
|
| 9 |
+
- grobid
|
| 10 |
+
- tei-xml
|
| 11 |
+
- bibtex
|
| 12 |
+
pretty_name: "ICLR/ICML/NeurIPS 2025 (no-PDF) GROBID outputs"
|
| 13 |
+
license: other
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
## Dataset Summary
|
| 17 |
+
|
| 18 |
+
This dataset contains **GROBID-parsed outputs** for research papers from **ICLR 2025**, **ICML 2025**, and **NeurIPS 2025**.
|
| 19 |
+
The repository is distributed as **zip archives** (no PDFs) to make it easy to download and mirror.
|
| 20 |
+
|
| 21 |
+
What you will find (per paper, when available):
|
| 22 |
+
- **TEI XML** produced by GROBID (`*.xml`)
|
| 23 |
+
- **BibTeX** produced by GROBID (`*.bib`)
|
| 24 |
+
- In some folders: additional GROBID artifacts such as `grobid_metadata` JSON and `grobid_bib` exports
|
| 25 |
+
|
| 26 |
+
What you will *not* find in the current release:
|
| 27 |
+
- PDFs (explicitly excluded)
|
| 28 |
+
- OpenReview reviews / scores
|
| 29 |
+
- A single tabular `datasets`-style split (this repo is file-based)
|
| 30 |
+
|
| 31 |
+
## Dataset Structure
|
| 32 |
+
|
| 33 |
+
The dataset is organized by conference year folders and typically shipped as zips:
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
paper_data/
|
| 37 |
+
├── ICLR_2025_no_pdf.zip
|
| 38 |
+
├── ICML_2025_no_pdf.zip
|
| 39 |
+
├── NeurIPS_2025_no_pdf.zip
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
Inside each zip (example; exact subfolders can differ by venue):
|
| 43 |
+
|
| 44 |
+
```
|
| 45 |
+
<VENUE>_2025/
|
| 46 |
+
├── grobid_tei/ # TEI XML files (*.xml)
|
| 47 |
+
├── grobid_bib/ # BibTeX exports (*.bib) (venue-dependent)
|
| 48 |
+
├── grobid_metadata/ # JSON metadata (venue-dependent)
|
| 49 |
+
└── ... # other non-PDF artifacts
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
| Conference | Papers | Reviews |
|
| 53 |
+
|------------|------:|-------:|
|
| 54 |
+
| ICLR 2025 | 11,475 | 46,748 |
|
| 55 |
+
| ICML 2025 | 3,385 | 35,546 |
|
| 56 |
+
| NeurIPS 2025 | 5,532 | 22,373 |
|
| 57 |
+
|
| 58 |
+
## How to Use
|
| 59 |
+
|
| 60 |
+
### Download from Hugging Face Hub
|
| 61 |
+
|
| 62 |
+
```python
|
| 63 |
+
from huggingface_hub import snapshot_download
|
| 64 |
+
|
| 65 |
+
local_dir = snapshot_download(repo_id="thanhkt/paper", repo_type="dataset")
|
| 66 |
+
print(local_dir)
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
Then unzip the archives you need (example):
|
| 70 |
+
|
| 71 |
+
```bash
|
| 72 |
+
unzip -q ICLR_2025_no_pdf.zip -d ./extracted/
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
### Parsing
|
| 76 |
+
|
| 77 |
+
- **TEI XML**: use any TEI/XML parser to extract title/abstract/sections/citations.
|
| 78 |
+
- **BibTeX**: parse with `bibtexparser` or similar libraries.
|
| 79 |
+
|
| 80 |
+
## Limitations
|
| 81 |
+
|
| 82 |
+
- GROBID outputs may contain parsing errors and incomplete fields depending on paper formatting.
|
| 83 |
+
- File coverage varies by venue and crawling/processing completeness.
|
| 84 |
+
- Because this repo is primarily **zip/binary files**, the Hugging Face dataset viewer may not display a table preview.
|
| 85 |
+
|
| 86 |
+
|