jimnoneill commited on
Commit
e4b9466
·
verified ·
1 Parent(s): 27d9ee0

Updated README — logo, related models, methodology, grant acknowledgment

Browse files
Files changed (1) hide show
  1. README.md +108 -14
README.md CHANGED
@@ -7,34 +7,128 @@ tags:
7
  - scientific-posters
8
  - poster-detection
9
  - poster-sentry
 
 
 
 
 
10
  size_categories:
11
  - 1K<n<10K
12
  task_categories:
13
  - text-classification
14
  ---
15
 
 
 
 
 
16
  # PosterSentry Training Data
17
 
18
- Extracted text from real scientific poster PDFs and non-poster documents,
19
- used to train the [PosterSentry classifier](https://huggingface.co/fairdataihub/poster-sentry).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  ## Format
22
 
23
- NDJSON with `text` and `label` fields:
 
24
  ```json
25
- {"text": "TITLE: Effects of Temperature on...", "label": "poster"}
26
- {"text": "Abstract. We present a novel approach...", "label": "non_poster"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ```
28
 
29
- ## Statistics
30
 
31
- | Label | Count | Source |
32
- |-------|-------|--------|
33
- | poster | 1,803 | Zenodo & Figshare verified posters |
34
- | non_poster | 1,803 | Multi-page docs (papers, proceedings, newsletters) |
35
 
36
- ## Source Corpus
37
 
38
- Sampled from 30K+ PDFs in the [posters.science](https://posters.science) collection:
39
- - 28,111 verified scientific posters
40
- - 2,036 verified non-posters
 
 
7
  - scientific-posters
8
  - poster-detection
9
  - poster-sentry
10
+ - machine-actionable
11
+ - FAIR-data
12
+ - posters-science
13
+ - quality-control
14
+ - multimodal
15
  size_categories:
16
  - 1K<n<10K
17
  task_categories:
18
  - text-classification
19
  ---
20
 
21
+ <div align="center">
22
+ <img src="https://huggingface.co/fairdataihub/poster-sentry/resolve/main/PosterSentry.png" alt="PosterSentry Logo" width="300"/>
23
+ </div>
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
+ ### Source Corpus
36
+
37
+ Sampled from a curated collection of **30,000+ classified scientific PDFs**:
38
+
39
+ | Category | Count | Platforms |
40
+ |----------|-------|-----------|
41
+ | Verified scientific posters | 28,111 | Zenodo, Figshare |
42
+ | Verified non-posters | 2,036 | Zenodo, Figshare |
43
+ | Corrupt/unreadable | 58 | — |
44
+ | **Total classified** | **30,205** | — |
45
+
46
+ Non-posters include multi-page papers, conference proceedings, abstract books, newsletters, project proposals, and other documents mislabeled as "posters" in repository metadata.
47
+
48
+ ## Files
49
+
50
+ | File | Description | Samples |
51
+ |------|-------------|---------|
52
+ | `poster_sentry_train.ndjson` | Training data (text + labels) | 3,606 |
53
 
54
  ## Format
55
 
56
+ NDJSON (newline-delimited JSON) with `text` and `label` fields:
57
+
58
  ```json
59
+ {"text": "TITLE: Effects of Temperature on Enzyme Kinetics\nAUTHORS: A. Smith...", "label": "poster"}
60
+ {"text": "Abstract. We present a novel approach to distributed computing...", "label": "non_poster"}
61
+ ```
62
+
63
+ ## Label Distribution
64
+
65
+ | Label | Count | Description |
66
+ |-------|-------|-------------|
67
+ | `poster` | 1,803 | Text from first page of verified single-page scientific posters |
68
+ | `non_poster` | 1,803 | Text from first page of verified multi-page documents |
69
+
70
+ Classes are perfectly balanced (1:1 ratio).
71
+
72
+ ## Data Collection Methodology
73
+
74
+ 1. **Poster corpus assembly**: 30K+ PDFs scraped from Zenodo and Figshare using the [poster-repo-scraper](https://github.com/fairdataihub/poster-repo-scraper)
75
+ 2. **Classification**: A Gradient Boosting classifier using PDF structural features (page count, physical dimensions, file size) separated posters from non-posters with F1 = 1.0 on held-out data
76
+ 3. **Separation**: 2,036 non-posters moved to a separate directory; 28,111 verified posters retained
77
+ 4. **Text extraction**: First page text extracted from each PDF using PyMuPDF (fitz), cleaned and truncated to 4,000 characters
78
+ 5. **Balanced sampling**: 1,803 samples per class (limited by the smaller non-poster class)
79
+
80
+ ## Related Resources
81
+
82
+ | Resource | Link |
83
+ |----------|------|
84
+ | **PosterSentry model** | [fairdataihub/poster-sentry](https://huggingface.co/fairdataihub/poster-sentry) |
85
+ | **Llama-3.1-8B-Poster-Extraction** | [fairdataihub/Llama-3.1-8B-Poster-Extraction](https://huggingface.co/fairdataihub/Llama-3.1-8B-Poster-Extraction) |
86
+ | **poster2json library** | [PyPI](https://pypi.org/project/poster2json/) · [GitHub](https://github.com/fairdataihub/poster2json) |
87
+ | **poster-json-schema** | [GitHub](https://github.com/fairdataihub/poster-json-schema) |
88
+ | **Platform** | [posters.science](https://posters.science) |
89
+
90
+ ## Usage
91
+
92
+ ### Train PosterSentry from this data
93
+
94
+ ```bash
95
+ pip install poster-sentry
96
+ python scripts/train_poster_sentry.py --n-per-class 2000
97
+ ```
98
+
99
+ ### Load directly with HuggingFace datasets
100
+
101
+ ```python
102
+ from datasets import load_dataset
103
+
104
+ ds = load_dataset("fairdataihub/poster-sentry-training-data")
105
+ print(ds["train"][0])
106
+ # {"text": "TITLE: ...", "label": "poster"}
107
+ ```
108
+
109
+ ### Use for PubGuard doc_type training
110
+
111
+ The poster texts in this dataset are also used by [PubGuard](https://huggingface.co/jimnoneill/pubguard-classifier) to train its `poster` document-type classification head.
112
+
113
+ ## Citation
114
+
115
+ ```bibtex
116
+ @dataset{poster_sentry_data_2026,
117
+ title = {PosterSentry Training Data: Real Scientific Poster Text Corpus},
118
+ author = {O'Neill, James and Soundarajan, Sanjay and Portillo, Dorian and Patel, Bhavesh},
119
+ year = {2026},
120
+ url = {https://huggingface.co/datasets/fairdataihub/poster-sentry-training-data},
121
+ note = {Part of the posters.science initiative}
122
+ }
123
  ```
124
 
125
+ ## License
126
 
127
+ MIT License See [LICENSE](https://opensource.org/licenses/MIT) for details.
 
 
 
128
 
129
+ ## Acknowledgments
130
 
131
+ - [FAIR Data Innovations Hub](https://fairdataihub.org/) at California Medical Innovations Institute (CalMI²)
132
+ - [posters.science](https://posters.science) platform
133
+ - HuggingFace for dataset hosting infrastructure
134
+ - Funded by The Navigation Fund ([10.71707/rk36-9x79](https://doi.org/10.71707/rk36-9x79)) — "Poster Sharing and Discovery Made Easy"