fineset-io commited on
Commit
d263dd0
·
verified ·
1 Parent(s): 39635f9

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: Speculative Decoding Papers
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - text-classification
10
+ - text-generation
11
+ tags:
12
+ - arxiv
13
+ - semantic-scholar
14
+ - papers
15
+ - research
16
+ - machine-learning
17
+ configs:
18
+ - config_name: default
19
+ data_files: data.jsonl
20
+ ---
21
+
22
+ # Speculative Decoding Papers — FineSet
23
+
24
+ A research-paper dataset on **Speculative Decoding Papers**, assembled, deduplicated, and quality-scored by
25
+ [FineSet](https://fineset.io) from arXiv and Semantic Scholar.
26
+
27
+ > **📸 This is a dated snapshot — generated 2026-06-19.**
28
+ > It is not auto-updated. Research on **Speculative Decoding Papers** moves fast — new papers land on arXiv every
29
+ > week. Want this same dataset **refreshed daily**, on a topic *you* choose? See the bottom. ↓
30
+
31
+ ## Why this dataset
32
+
33
+ - **Quality-scored:** `quality_score` float (0–1), blends citations with recency + code/venue signals — filter out the noise
34
+ - **Papers with code:** 134 flagged via `has_code` — find reproducible work fast
35
+ - **Deduplicated:** arXiv + Semantic Scholar cross-referenced, duplicate records merged
36
+ - **Clean JSONL:** 485 records, one per line, normalized fields — no encoding garbage
37
+
38
+ ## Dataset details
39
+
40
+ - **Records:** 485
41
+ - **Date range:** 2022–2026
42
+ - **Snapshot date:** 2026-06-19 (frozen — see note above)
43
+ - **Sources:** arXiv, Semantic Scholar (cross-referenced, duplicates merged)
44
+ - **arXiv categories:** cs.LG, cs.CL
45
+ - **Quality scoring:** citations + recency + code/venue blend, 0–1 (p50=0.35, p90=0.61)
46
+ - **Format:** JSONL, one record per line
47
+
48
+ ## Fields
49
+
50
+ | Field | Type | Description |
51
+ |---|---|---|
52
+ | id | string | Deterministic SHA256 record id |
53
+ | sources | list | Which sources contributed (`arxiv`, `semantic_scholar`) |
54
+ | title | string | Paper title |
55
+ | abstract | string | Full abstract |
56
+ | authors | list | Author names |
57
+ | categories | list | arXiv category codes |
58
+ | fields_of_study | list | Semantic Scholar field tags |
59
+ | published_date | string | ISO 8601 date |
60
+ | url | string | arXiv abstract URL |
61
+ | pdf_url | string\|null | Open-access PDF if available |
62
+ | arxiv_id | string\|null | arXiv identifier |
63
+ | doi | string\|null | DOI if available |
64
+ | citation_count | int | Citation count (Semantic Scholar) |
65
+ | influential_citation_count | int | Influential citations (Semantic Scholar) |
66
+ | has_code | bool | Code repo detected in the arXiv comment |
67
+ | code_url | string\|null | GitHub URL if detected |
68
+ | venue | string\|null | Publication venue |
69
+ | quality_score | float | 0–1, blended (citations + recency + code/venue) |
70
+
71
+ ## Quality score methodology
72
+
73
+ `quality_score = max(impact, freshness)`, clamped to [0, 1], where:
74
+
75
+ - **impact** = `max( log10(citations+1)/4 , log10(influential_citations+1)/2 )` —
76
+ realized impact (0.5 at 100 citations, ~0.75 at 1,000, 1.0 at 10,000+).
77
+ - **freshness** = `recency × (0.35 + 0.30·has_code + 0.20·has_venue)` — a baseline
78
+ for recent papers (so a strong paper published this week isn't scored 0 just for
79
+ lacking citations), where `recency` is 1.0 for papers ≤60 days old and decays
80
+ linearly to 0 by ~18 months.
81
+
82
+ Old highly-cited papers score on impact; brand-new papers score on freshness; old
83
+ uncited papers score ~0. Useful for filtering training data by quality, not just age.
84
+
85
+ ## 👉 Want this on YOUR topic, updated daily?
86
+
87
+ This snapshot is frozen at 2026-06-19. The live FineSet pipeline keeps a dataset like this
88
+ **refreshed every day** on whatever topic you describe — new papers in, dedup and quality
89
+ scoring automatic, export as JSONL/Parquet or push straight to the Hub.
90
+
91
+ **Tell me the topic you'd want and I'll run the pipeline on it** — open a discussion on this
92
+ dataset, it's free and it's how I decide what to build next.
93
+
94
+ → [fineset.io](https://fineset.io) — describe what you want to train on, get a dataset.
95
+ Early-access waitlist open (referral skip available).