jimnoneill commited on
Commit
b2ecf4b
·
verified ·
1 Parent(s): b7ec4e0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ - multilingual
8
+ tags:
9
+ - abstract-detection
10
+ - scientific-text
11
+ - quality-filtering
12
+ - pubverse
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # Abstract Archon Training Data
18
+
19
+ Binary classification dataset for detecting whether a text is a real scientific research abstract or non-abstract content (figure captions, supplementary material references, author bylines, journal metadata, HTML artifacts, taxonomy stubs).
20
+
21
+ ## Dataset Details
22
+
23
+ - **Positive examples (label=1)**: 2,000 real abstracts randomly sampled from a 198M publication database (publications not flagged by any quality filter, length >= 200 characters)
24
+ - **Negative examples (label=0)**: ~2,000 non-abstract texts from various garbage categories:
25
+ - `figure_table_caption`: Figure and table captions misidentified as abstracts
26
+ - `journal_article_scrape`: Scraped article metadata (titles, access info, author lists)
27
+ - `html_heavy_text`: Content with substantial HTML markup
28
+ - `author_byline`: Author affiliations and bylines
29
+ - `moesm_title`: Electronic supplementary material descriptions
30
+ - `supplementary_content`: Supplementary material references
31
+ - `taxonomy_stub`: Taxonomic database stubs
32
+
33
+ ## Format
34
+
35
+ NDJSON with fields:
36
+ - `text`: First 500 characters of the abstract field
37
+ - `label`: 1 (real abstract) or 0 (garbage/non-abstract)
38
+ - `source`: Category label (e.g., `positive_real_abstract`, `negative_figure_table_caption`)
39
+ - `source_id`: OpenAlex-style source identifier
40
+
41
+ ## Data Curation
42
+
43
+ Negatives were manually curated to remove misclassified entries. The `html_heavy` category was entirely removed after review showed nearly all entries were real abstracts with minor HTML entity artifacts. The `supplementary_content` category was filtered to retain only entries that begin with supplementary material indicators (e.g., "Figure S1", "Additional file", "Supplementary dataset").
44
+
45
+ ## Intended Use
46
+
47
+ Training a lightweight binary classifier (Potion-32M embeddings + LogisticRegression) as a quality gate for large-scale scientific publication databases. The classifier identifies non-abstract text that has been incorrectly stored in abstract fields.
48
+
49
+ ## Source
50
+
51
+ Sampled from a PostgreSQL database of ~198M publications aggregated from OpenAlex, PubMed, arXiv, bioRxiv, and medRxiv. Part of the [PubVerse](https://github.com/jimnoneill/pubverse) project.