Upload text parquet shards (2 files)
Browse files- README.md +86 -0
- arxiv/data-shard-0000.parquet +3 -0
- iclr/data-shard-0000.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: arxiv
|
| 5 |
+
data_files:
|
| 6 |
+
- split: papers
|
| 7 |
+
path: arxiv/*.parquet
|
| 8 |
+
- config_name: openreview-iclr
|
| 9 |
+
data_files:
|
| 10 |
+
- split: papers
|
| 11 |
+
path: iclr/*.parquet
|
| 12 |
+
tags:
|
| 13 |
+
- academic-paper-review
|
| 14 |
+
- paper-review
|
| 15 |
+
- sharegpt
|
| 16 |
+
- text
|
| 17 |
+
language:
|
| 18 |
+
- en
|
| 19 |
+
size_categories:
|
| 20 |
+
- 100K<n<1M
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# paperlens-text
|
| 24 |
+
|
| 25 |
+
Text version of the **OpenReview-ICLR** and **arXiv** PaperLens datasets.
|
| 26 |
+
|
| 27 |
+
Each row is one unique paper. We release **all** extracted papers — not every paper here is used in our downstream training/eval sets. The papers that *are* used are denoted by the `references` field, which lists every internal `(release_name, release_split)` pair the paper belongs to (a single paper can belong to multiple). [`reconstruction.py`](https://github.com/zlab-princeton/PaperLens/blob/main/paperlens-training-and-inference/scripts/reconstruction.py) reads this field to materialize the original sharegpt `data.json` for any of the ~20 publishable text keys.
|
| 28 |
+
|
| 29 |
+
## Configs (subsets)
|
| 30 |
+
|
| 31 |
+
- `arxiv` — papers from arxiv (per_venue + 21k families + residual + the arxiv side of combined).
|
| 32 |
+
- `openreview-iclr` — papers from ICLR via OpenReview (balanced_original + max_rejects + train_50pct/75pct + the iclr side of combined).
|
| 33 |
+
|
| 34 |
+
```python
|
| 35 |
+
from datasets import load_dataset
|
| 36 |
+
ds_arxiv = load_dataset("skonan/paperlens-text", "arxiv", split="papers")
|
| 37 |
+
ds_iclr = load_dataset("skonan/paperlens-text", "openreview-iclr", split="papers")
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Schema
|
| 41 |
+
|
| 42 |
+
| field | type | description |
|
| 43 |
+
|---|---|---|
|
| 44 |
+
| `paper_id` | `string` | arXiv id or OpenReview submission id |
|
| 45 |
+
| `title` | `string` | paper title |
|
| 46 |
+
| `content` | `string` | prompt-stripped body (the full paper body in markdown) |
|
| 47 |
+
| `metadata` | `string` | JSON blob — venue, year, authors, ratings, decision, … |
|
| 48 |
+
| `label` | `string` | `"Accept"` or `"Reject"` |
|
| 49 |
+
| `references` | `list<list<string>>` | each entry is `[release_name, release_split]` — the internal splits this paper belongs to |
|
| 50 |
+
|
| 51 |
+
## Reconstructing the sharegpt `data.json` files
|
| 52 |
+
|
| 53 |
+
[`reconstruction.py`](https://github.com/zlab-princeton/PaperLens/blob/main/paperlens-training-and-inference/scripts/reconstruction.py) rebuilds any of the publishable internal keys (e.g. `arxiv_50_50_21k_text_..._y24up_test`) byte-identically from this dataset. Setup + run:
|
| 54 |
+
|
| 55 |
+
```bash
|
| 56 |
+
git clone https://github.com/zlab-princeton/PaperLens.git
|
| 57 |
+
cd PaperLens/paperlens-training-and-inference
|
| 58 |
+
uv sync
|
| 59 |
+
|
| 60 |
+
# arxiv training set
|
| 61 |
+
uv run python scripts/reconstruction.py \
|
| 62 |
+
--hf_text_repo skonan/paperlens-text \
|
| 63 |
+
--dataset_keys arxiv_50_50_balanced_per_venue_text_wmetadata_filtered24480_train
|
| 64 |
+
|
| 65 |
+
# openreview-iclr training set
|
| 66 |
+
uv run python scripts/reconstruction.py \
|
| 67 |
+
--hf_text_repo skonan/paperlens-text \
|
| 68 |
+
--dataset_keys iclr_2020_2023_2025_2026_85_5_10_balanced_original_text_labelfix_v7_filtered_train
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
Reconstructed files land in `./data/` by default (override with `--data_root <path>`): `data/<dataset_key>/data.json` (sharegpt rows) and `data/dataset_info.json` (LlamaFactory entry).
|
| 72 |
+
|
| 73 |
+
The release ships a `manifest.json` sidecar mapping each internal `dataset_info.json` key → `(release_name, release_split, columns, file_name)`, so reconstruction reproduces conversations, `_metadata`, `accept_reject_label` (where applicable).
|
| 74 |
+
|
| 75 |
+
## License & citation
|
| 76 |
+
|
| 77 |
+
License: see the [PaperLens collection](https://huggingface.co/collections/skonan/paperlens-6a0c79da423c3a436b7f6b1a).
|
| 78 |
+
|
| 79 |
+
```bibtex
|
| 80 |
+
@misc{konan2026paperlens,
|
| 81 |
+
title = {PaperLens: How Predictable Is Paper Acceptance?},
|
| 82 |
+
author = {Konan, Sachin and Liu, Jonathan and Liu, Zhuang},
|
| 83 |
+
year = {2026},
|
| 84 |
+
institution = {Princeton University}
|
| 85 |
+
}
|
| 86 |
+
```
|
arxiv/data-shard-0000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b950eaea028a34d2370a95fe0ac15826080a5cbaa6960e5bcb3bc6df93375b8
|
| 3 |
+
size 1707608574
|
iclr/data-shard-0000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a820a4f0faa2f5b788b3d74342538efa659efd22f7cbaf9afd25afbe339daa81
|
| 3 |
+
size 723835306
|