sumuks commited on
Commit
51197d1
·
verified ·
1 Parent(s): 08e7d93

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -34
README.md CHANGED
@@ -1,36 +1,47 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: paper_id
5
- dtype: string
6
- - name: source
7
- dtype: string
8
- - name: year
9
- dtype: int32
10
- - name: paper_text
11
- dtype: string
12
- - name: anonymized_paper_text
13
- dtype: string
14
- - name: decision_label
15
- dtype: string
16
- - name: decision_text
17
- dtype: string
18
- - name: average_review_score
19
- dtype: float32
20
- splits:
21
- - name: train
22
- num_bytes: 314519513
23
- num_examples: 1885
24
- - name: test
25
- num_bytes: 78588165
26
- num_examples: 471
27
- download_size: 186811222
28
- dataset_size: 393107678
29
- configs:
30
- - config_name: default
31
- data_files:
32
- - split: train
33
- path: data/train-*
34
- - split: test
35
- path: data/test-*
36
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - ocr
4
+ - peer-review
5
+ - classification
6
+ license: other
7
+ language:
8
+ - en
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
+
11
+ # Popper Reviews — Private Prediction Subset
12
+
13
+ ## Dataset Summary
14
+ This repository exposes an 80/20 train/test split tailored for acceptance prediction tasks. Each example contains:
15
+
16
+ - `paper_text`: OCR’d manuscript text.
17
+ - `anonymized_paper_text`: the same text with the author block removed (starts at the abstract).
18
+ - `decision_label`: normalized `accept`/`reject` outcome.
19
+ - `decision_text`: original decision string when available.
20
+ - `average_review_score`: mean of numeric reviewer ratings extracted from the Popper review JSON files.
21
+
22
+ Source corpora: Popper’s ICLR, TMLR, and Nature review dumps. Only papers with an explicit accept/reject decision are included. Reference lists are removed from `anonymized_paper_text` to focus on the manuscript narrative.
23
+
24
+ ## Splits
25
+ | Split | Records |
26
+ | --- | --- |
27
+ | train | 1 884 |
28
+ | test | 472 |
29
+
30
+ Splits are stratified with an 80/20 ratio using a fixed random seed (42).
31
+
32
+ ## Usage
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ data = load_dataset("popper-spiralworks/prediction_task", split="train", token=token)
37
+ print(data[0]["decision_label"], data[0]["average_review_score"])
38
+ ```
39
+
40
+ ## Processing Notes
41
+ - OCR text comes from DeepSeek-OCR via Popper (`metadata.backend = deepseek` when available).
42
+ - Average scores are computed by parsing the numeric prefix of each reviewer `rating` field.
43
+ - Non-numeric or missing ratings are ignored during averaging.
44
+ - Additional review metadata and reviewer comments are available in the public dataset [`sumuks/research_papers_with_reviews_ocr`](https://huggingface.co/datasets/sumuks/research_papers_with_reviews_ocr).
45
+
46
+ ## Attribution
47
+ When using this dataset, please credit the original venues (ICLR, TMLR, Nature) and cite the Popper project. Access to this repository is restricted to the Popper Spiralworks collaboration.