jimnoneill commited on
Commit
539c61d
·
verified ·
1 Parent(s): 324790b

Release 1.0.0: human-validated labels

Browse files

3,381 documents with labels from the three-reviewer survey and blinded adjudication; rows now carry document id, DOI, source, and label provenance. Supersedes the heuristic-label release.

Files changed (2) hide show
  1. README.md +40 -42
  2. poster_sentry_train.ndjson +0 -0
README.md CHANGED
@@ -24,60 +24,63 @@ task_categories:
24
 
25
  # PosterSentry Training Data
26
 
27
- Training dataset for [**PosterSentry**](https://huggingface.co/fairdataihub/poster-sentry) the multimodal scientific poster classifier used in the [posters.science](https://posters.science) quality control pipeline.
28
 
29
  Developed by the [**FAIR Data Innovations Hub**](https://fairdataihub.org/) at the California Medical Innovations Institute (CalMI²).
30
 
31
- ## Dataset Description
 
 
 
 
32
 
33
- Text extracted from **real scientific poster PDFs** and **real non-poster documents** zero synthetic data. Every sample comes from an actual PDF downloaded from Zenodo or Figshare as part of the posters.science corpus.
34
 
35
- This is a **balanced** dataset: 1,803 poster samples and 1,803 non-poster samples, drawn from the source corpus described below.
36
 
37
- ### Source Corpus
38
 
39
- Sampled from a collection of **30,000+ scientific PDFs** scraped from Zenodo and Figshare:
40
 
41
- | Category | Count | Selection Method |
42
- |----------|-------|-----------------|
43
- | Repository-labeled posters | ~28,000 | Records tagged as "poster" in Zenodo/Figshare metadata |
44
- | Manually confirmed non-posters | 2,036 | Flagged by structural classifier, then human-reviewed |
45
- | Corrupt/unreadable | 58 | — |
46
 
47
- Non-posters include multi-page papers, conference proceedings, abstract books, newsletters, project proposals, and other documents mislabeled as "posters" in repository metadata.
 
 
48
 
49
- **Note on poster labels**: The poster class is drawn from repository records self-described as posters by their uploaders. These were not individually verified by human reviewers. When PosterSentry was later applied to the full 30K corpus, approximately 20% of repository-labeled "posters" were reclassified as non-posters, suggesting meaningful label noise in the broader corpus. The balanced training subset published here was randomly sampled from the repository-labeled poster pool.
50
 
51
  ## Files
52
 
53
- | File | Description | Samples |
54
- |------|-------------|---------|
55
- | `poster_sentry_train.ndjson` | Balanced training data (text + labels) | 3,606 |
56
 
57
  ## Format
58
 
59
- NDJSON (newline-delimited JSON) with `text` and `label` fields:
60
 
61
  ```json
62
- {"text": "TITLE: Effects of Temperature on Enzyme Kinetics\nAUTHORS: A. Smith...", "label": "poster"}
63
- {"text": "Abstract. We present a novel approach to distributed computing...", "label": "non_poster"}
64
  ```
65
 
66
- ## Label Distribution
67
-
68
- | Label | Count | Description |
69
- |-------|-------|-------------|
70
- | `poster` | 1,803 | Text from first page of repository-labeled single-page scientific posters |
71
- | `non_poster` | 1,803 | Text from first page of manually confirmed non-poster documents |
 
 
72
 
73
- Classes are perfectly balanced (1:1 ratio).
74
 
75
- ## Data Collection Methodology
 
 
 
76
 
77
- 1. **Corpus assembly**: 30K+ PDFs scraped from Zenodo and Figshare using the [poster-repo-scraper](https://github.com/fairdataihub/poster-repo-scraper), selecting records whose metadata indicated "poster"
78
- 2. **Non-poster identification**: A structural classifier using PDF features (page count, dimensions, file size) flagged 2,036 candidate non-posters, which were then manually reviewed and confirmed
79
- 3. **Text extraction**: First-page text extracted from each PDF using PyMuPDF, cleaned (whitespace normalization) and truncated to 4,000 characters
80
- 4. **Balanced sampling**: 1,803 samples randomly drawn from each class (limited by the smaller non-poster pool after feature extraction filtering)
81
 
82
  ## Related Resources
83
 
@@ -86,6 +89,7 @@ Classes are perfectly balanced (1:1 ratio).
86
  | **PosterSentry model** | [fairdataihub/poster-sentry](https://huggingface.co/fairdataihub/poster-sentry) |
87
  | **poster-sentry** | [GitHub](https://github.com/fairdataihub/poster-sentry) |
88
  | **poster-sentry-training** | [GitHub](https://github.com/fairdataihub/poster-sentry-training) |
 
89
  | **Llama-3.1-8B-Poster-Extraction** | [fairdataihub/Llama-3.1-8B-Poster-Extraction](https://huggingface.co/fairdataihub/Llama-3.1-8B-Poster-Extraction) |
90
  | **poster2json library** | [PyPI](https://pypi.org/project/poster2json/) · [GitHub](https://github.com/fairdataihub/poster2json) |
91
  | **poster-json-schema** | [GitHub](https://github.com/fairdataihub/poster-json-schema) |
@@ -93,13 +97,6 @@ Classes are perfectly balanced (1:1 ratio).
93
 
94
  ## Usage
95
 
96
- ### Train PosterSentry from this data
97
-
98
- ```bash
99
- pip install poster-sentry
100
- python scripts/train_poster_sentry.py --n-per-class 2000
101
- ```
102
-
103
  ### Load directly with HuggingFace datasets
104
 
105
  ```python
@@ -107,7 +104,7 @@ from datasets import load_dataset
107
 
108
  ds = load_dataset("fairdataihub/poster-sentry-training-data")
109
  print(ds["train"][0])
110
- # {"text": "TITLE: ...", "label": "poster"}
111
  ```
112
 
113
  ### Use for PubGuard doc_type training
@@ -119,8 +116,9 @@ The poster texts in this dataset are also used by [PubGuard](https://huggingface
119
  ```bibtex
120
  @dataset{poster_sentry_data_2026,
121
  title = {PosterSentry Training Data: Scientific Poster Text Corpus},
122
- author = {O'Neill, James and Soundarajan, Sanjay and Portillo, Dorian and Patel, Bhavesh},
123
  year = {2026},
 
124
  url = {https://huggingface.co/datasets/fairdataihub/poster-sentry-training-data},
125
  note = {Part of the posters.science initiative}
126
  }
@@ -128,11 +126,11 @@ The poster texts in this dataset are also used by [PubGuard](https://huggingface
128
 
129
  ## License
130
 
131
- MIT License See [LICENSE](https://opensource.org/licenses/MIT) for details.
132
 
133
  ## Acknowledgments
134
 
135
  - [FAIR Data Innovations Hub](https://fairdataihub.org/) at California Medical Innovations Institute (CalMI²)
136
  - [posters.science](https://posters.science) platform
137
  - HuggingFace for dataset hosting infrastructure
138
- - Funded by The Navigation Fund ([10.71707/rk36-9x79](https://doi.org/10.71707/rk36-9x79)) "Poster Sharing and Discovery Made Easy"
 
24
 
25
  # PosterSentry Training Data
26
 
27
+ Human-validated training dataset for [**PosterSentry**](https://huggingface.co/fairdataihub/poster-sentry), the multimodal scientific poster classifier used in the [posters.science](https://posters.science) quality control pipeline.
28
 
29
  Developed by the [**FAIR Data Innovations Hub**](https://fairdataihub.org/) at the California Medical Innovations Institute (CalMI²).
30
 
31
+ ## Version
32
+
33
+ | Version | Date | Notes |
34
+ |---------|------|-------|
35
+ | **1.0.0** | 2026-08-18 | Human-validated labels: every document was independently rated by three reviewers (Krippendorff's alpha 0.79) and the 439 contested documents were settled in a blinded adjudication review. Rows now carry document identifiers, DOIs, and label provenance. This is the corpus the published PosterSentry model is trained on. |
36
 
37
+ The earlier unversioned release (April 2026) used heuristic repository labels and is superseded; it remains available in the repository history.
38
 
39
+ ## Dataset Description
40
 
41
+ Text extracted from **real scientific documents**, zero synthetic data. Every sample comes from an actual PDF downloaded from Zenodo or Figshare as part of the posters.science corpus, and every label was validated by people.
42
 
43
+ The corpus holds **3,381 documents**: 1,686 posters and 1,695 non-posters (near-balanced by construction of the candidate pools, not by resampling).
44
 
45
+ ### Labeling
 
 
 
 
46
 
47
+ 1. **Survey**: Three reviewers independently classified all 3,570 candidate documents (poster, non-poster, or unsure) at [survey.posters.science](https://survey.posters.science), casting 10,710 votes with an inter-rater Krippendorff's alpha of 0.79.
48
+ 2. **Adjudication**: The 439 documents without a unanimous panel (377 decided two to one, 62 exact ties) were adjudicated in a blinded review: each document image was re-examined in randomized order without access to the panel votes or any model output.
49
+ 3. **Deduplication**: 182 near-duplicate documents (matching normalized 300-character text prefixes) and 7 documents with unavailable PDFs were removed, leaving the 3,381-document training corpus published here.
50
 
51
+ Non-posters include multi-page papers, conference proceedings, abstract books, newsletters, flyers, slide decks, and other documents mislabeled as "posters" in repository metadata.
52
 
53
  ## Files
54
 
55
+ | File | Description | Rows |
56
+ |------|-------------|------|
57
+ | `poster_sentry_train.ndjson` | Human-validated training corpus (text, labels, identifiers) | 3,381 |
58
 
59
  ## Format
60
 
61
+ NDJSON (newline-delimited JSON), one document per row:
62
 
63
  ```json
64
+ {"id": "fxd4ylwf0byrtj307b5k3kpm", "doi": "10.5281/zenodo.1234567", "source": "zenodo", "text": "TITLE: Effects of Temperature on Enzyme Kinetics ...", "label": "poster", "label_source": "unanimous_panel"}
 
65
  ```
66
 
67
+ | Field | Description |
68
+ |-------|-------------|
69
+ | `id` | Survey document identifier (matches the paper's supplementary files) |
70
+ | `doi` | DOI of the source repository record (Zenodo or Figshare) |
71
+ | `source` | `zenodo` or `figshare` |
72
+ | `text` | First-page text extracted with PyMuPDF, whitespace-normalized, truncated to 4,000 characters |
73
+ | `label` | `poster` or `non_poster` (human-validated) |
74
+ | `label_source` | `unanimous_panel` (all non-unsure votes identical) or `adjudicated` (settled in the blinded review) |
75
 
76
+ ## Label Distribution
77
 
78
+ | Label | Count |
79
+ |-------|-------|
80
+ | `poster` | 1,686 |
81
+ | `non_poster` | 1,695 |
82
 
83
+ By provenance: 2,949 documents carry a unanimous panel label and 432 an adjudicated label (7 of the 439 adjudicated documents fell to deduplication or unavailable PDFs). Every row carries a DOI.
 
 
 
84
 
85
  ## Related Resources
86
 
 
89
  | **PosterSentry model** | [fairdataihub/poster-sentry](https://huggingface.co/fairdataihub/poster-sentry) |
90
  | **poster-sentry** | [GitHub](https://github.com/fairdataihub/poster-sentry) |
91
  | **poster-sentry-training** | [GitHub](https://github.com/fairdataihub/poster-sentry-training) |
92
+ | **poster-sentry-evaluation-paper-code** | [GitHub](https://github.com/fairdataihub/poster-sentry-evaluation-paper-code) |
93
  | **Llama-3.1-8B-Poster-Extraction** | [fairdataihub/Llama-3.1-8B-Poster-Extraction](https://huggingface.co/fairdataihub/Llama-3.1-8B-Poster-Extraction) |
94
  | **poster2json library** | [PyPI](https://pypi.org/project/poster2json/) · [GitHub](https://github.com/fairdataihub/poster2json) |
95
  | **poster-json-schema** | [GitHub](https://github.com/fairdataihub/poster-json-schema) |
 
97
 
98
  ## Usage
99
 
 
 
 
 
 
 
 
100
  ### Load directly with HuggingFace datasets
101
 
102
  ```python
 
104
 
105
  ds = load_dataset("fairdataihub/poster-sentry-training-data")
106
  print(ds["train"][0])
107
+ # {"id": "...", "doi": "...", "source": "zenodo", "text": "TITLE: ...", "label": "poster", "label_source": "unanimous_panel"}
108
  ```
109
 
110
  ### Use for PubGuard doc_type training
 
116
  ```bibtex
117
  @dataset{poster_sentry_data_2026,
118
  title = {PosterSentry Training Data: Scientific Poster Text Corpus},
119
+ author = {O'Neill, Jamey and Portillo, Dorian and Zeinali, Nahid and Soundarajan, Sanjay and Blake, Gerard and Sarin, Parth and Buttrick, Adam and Patel, Bhavesh},
120
  year = {2026},
121
+ version = {1.0.0},
122
  url = {https://huggingface.co/datasets/fairdataihub/poster-sentry-training-data},
123
  note = {Part of the posters.science initiative}
124
  }
 
126
 
127
  ## License
128
 
129
+ MIT License. See [LICENSE](https://opensource.org/licenses/MIT) for details.
130
 
131
  ## Acknowledgments
132
 
133
  - [FAIR Data Innovations Hub](https://fairdataihub.org/) at California Medical Innovations Institute (CalMI²)
134
  - [posters.science](https://posters.science) platform
135
  - HuggingFace for dataset hosting infrastructure
136
+ - Funded by The Navigation Fund ([10.71707/rk36-9x79](https://doi.org/10.71707/rk36-9x79)), "Poster Sharing and Discovery Made Easy"
poster_sentry_train.ndjson CHANGED
The diff for this file is too large to render. See raw diff