Norelec7 commited on
Commit
83a1e20
·
verified ·
1 Parent(s): 40f6959

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ pretty_name: Parameter Golf Competition Data
8
+ size_categories:
9
+ - 1B<n<10B
10
+ tags:
11
+ - parameter-golf
12
+ - fineweb
13
+ - language-modeling
14
+ - competition
15
+ ---
16
+
17
+ # Parameter Golf Competition Data
18
+
19
+ Pre-tokenized [FineWeb](https://huggingface.co/datasets/HuggingFaceFW/fineweb) shards for the [OpenAI Parameter Golf](https://github.com/openai/parameter-golf) competition.
20
+
21
+ **Two tokenizations included:**
22
+ - **SP1024** — SentencePiece BPE, 1024 tokens (competition default)
23
+ - **Scylla** — TokenMonster-derived, 998 tokens (community alternative from [PR #1143](https://github.com/openai/parameter-golf/pull/1143))
24
+
25
+ ## Why this exists
26
+
27
+ Every time you launch a GPU pod, re-downloading 16+ GB of data from the competition repo costs 10-30 minutes of billable GPU time. This dataset provides the same data via `huggingface-cli download` — fast, resumable, and available from any provider (RunPod, Modal, Colab, Vast.ai).
28
+
29
+ ## Quick Start
30
+
31
+ ```bash
32
+ # Full SP1024 dataset (~11 GB)
33
+ huggingface-cli download LightSpeedUp/parameter-golf-data --include "fineweb_sp1024/*" --local-dir /workspace/data
34
+
35
+ # Full Scylla dataset (~11 GB)
36
+ huggingface-cli download LightSpeedUp/parameter-golf-data --include "fineweb_scylla/*" --local-dir /workspace/data
37
+
38
+ # Tokenizers only
39
+ huggingface-cli download LightSpeedUp/parameter-golf-data --include "tokenizers/*" --local-dir /workspace/data
40
+
41
+ # Mini subset for smoke tests (~2 GB, 10 shards + val)
42
+ huggingface-cli download LightSpeedUp/parameter-golf-data \
43
+ --include "fineweb_sp1024/fineweb_train_00000?.bin" \
44
+ --include "fineweb_sp1024/fineweb_val*" \
45
+ --local-dir /workspace/data
46
+
47
+ # Val only (~200 MB)
48
+ huggingface-cli download LightSpeedUp/parameter-golf-data \
49
+ --include "fineweb_sp1024/fineweb_val*" \
50
+ --local-dir /workspace/data
51
+ ```
52
+
53
+ ## Dataset Structure
54
+
55
+ ```
56
+ parameter-golf-data/
57
+ ├── fineweb_sp1024/
58
+ │ ├── fineweb_train_000000.bin ... fineweb_train_000079.bin (80 shards, ~11 GB)
59
+ │ └── fineweb_val_000000.bin (1 shard, ~200 MB)
60
+ ├── fineweb_scylla/
61
+ │ ├── fineweb_train_000000.bin ... fineweb_train_000079.bin (80 shards, ~11 GB)
62
+ │ └── fineweb_val_000000.bin (1 shard)
63
+ ├── tokenizers/
64
+ │ ├── fineweb_1024_bpe.model (SP1024 SentencePiece)
65
+ │ ├── scylla/candidate.vocab (TokenMonster 998)
66
+ │ └── scylla/candidate.meta.npz (byte LUTs)
67
+ └── SHA256SUMS.txt (integrity manifest)
68
+ ```
69
+
70
+ ## Data Integrity
71
+
72
+ Verify your download:
73
+ ```bash
74
+ cd /workspace/data
75
+ sha256sum -c SHA256SUMS.txt
76
+ ```
77
+
78
+ ## Provenance
79
+
80
+ - **Source:** [FineWeb](https://huggingface.co/datasets/HuggingFaceFW/fineweb) (CommonCrawl-derived, by Hugging Face)
81
+ - **SP1024 tokenization:** SentencePiece BPE trained on FineWeb, 1024 tokens — from [openai/parameter-golf](https://github.com/openai/parameter-golf) competition repo
82
+ - **Scylla tokenization:** TokenMonster vocabulary (998 tokens) by [@simon-marcus](https://github.com/simon-marcus) ([PR #1143](https://github.com/openai/parameter-golf/pull/1143)). Retokenized using our [retokenize_scylla.py](https://github.com/MatoTeziTanka/parameter-golf-private) pipeline.
83
+ - **No modification** to token sequences — these are byte-identical to what you'd get by cloning the competition repo and running the tokenizer yourself.
84
+
85
+ ## Attribution Chain
86
+
87
+ FineWeb → CommonCrawl (CC-BY) → Hugging Face (ODC-By 1.0) → This dataset (ODC-By 1.0)
88
+
89
+ ## License
90
+
91
+ **Data:** [Open Data Commons Attribution License (ODC-By 1.0)](https://opendatacommons.org/licenses/by/1-0/) — required by FineWeb upstream license. You may use, share, and adapt this data with attribution.
92
+
93
+ **Retokenization code:** Apache 2.0 — see [PATENTS.md](PATENTS.md) for patent boundary notice.
94
+
95
+ ## Community
96
+
97
+ - [The Agora](https://matotezitanka.github.io/parameter-golf) — live leaderboard + compliance tracker
98
+ - [Issue #942](https://github.com/openai/parameter-golf/issues/942) — compute resources discussion
99
+ - [Issue #140](https://github.com/openai/parameter-golf/issues/140) — competition discussion thread
100
+
101
+ Built by [Light Speed Up](https://lightspeedup.com) for the Parameter Golf community.