joelniklaus HF Staff commited on
Commit
67b1816
·
verified ·
1 Parent(s): 0d9dd50

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: text
5
+ dtype: string
6
+ - name: id
7
+ dtype: string
8
+ - name: url
9
+ dtype: string
10
+ - name: language
11
+ dtype: string
12
+ - name: language_score
13
+ dtype: float64
14
+ - name: fasttext_score
15
+ dtype: float64
16
+ - name: dataset
17
+ dtype: string
18
+ splits:
19
+ - name: train
20
+ num_examples: 89269902
21
+ license: odc-by
22
+ language:
23
+ - en
24
+ size_categories:
25
+ - 10M<n<100M
26
+ tags:
27
+ - pretraining
28
+ - smol-data
29
+ pretty_name: DCLM 100BT
30
+ ---
31
+
32
+ # DCLM 100BT
33
+
34
+ A ~100 billion token English subset of [DCLM-Baseline 1.0](https://huggingface.co/datasets/mlfoundations/dclm-baseline-1.0-parquet), created for efficient pretraining experiments.
35
+
36
+ Part of the [Smol-Data](https://huggingface.co/collections/HuggingFaceFW/smol-data) collection — tried and tested mixes for strong pretraining.
37
+
38
+ ## Dataset Description
39
+
40
+ This dataset was created by randomly sampling from the full DCLM-Baseline 1.0 dataset (~3.5T tokens) to produce a ~100B token subset. Sampling was performed with a fixed seed (42) and a slight 1.05× oversampling factor to account for variance.
41
+
42
+ A pre-shuffled version is available at [HuggingFaceFW/dclm_100BT-shuffled](https://huggingface.co/datasets/HuggingFaceFW/dclm_100BT-shuffled).
43
+
44
+ ## How It Was Created
45
+
46
+ The dataset was generated using [datatrove](https://github.com/huggingface/datatrove) with the [smol_data.py](https://github.com/huggingface/datatrove/blob/main/examples/smol_data.py) script. The pipeline reads from the source dataset in streaming mode, applies a `SamplerFilter` to downsample, and writes the result back to the Hugging Face Hub.
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ ds = load_dataset("HuggingFaceFW/dclm_100BT", split="train", streaming=True)
54
+ for sample in ds:
55
+ print(sample["text"][:200])
56
+ break
57
+ ```
58
+
59
+ ## Citation
60
+
61
+ ```bibtex
62
+ @misc{niklaus2025dclm100bt,
63
+ title={DCLM 100BT},
64
+ author={Joel Niklaus and Hynek Kydl{\'\i}{\v{c}}ek},
65
+ year={2026},
66
+ publisher={Hugging Face},
67
+ journal={Hugging Face repository},
68
+ howpublished={\url{https://huggingface.co/datasets/HuggingFaceFW/dclm_100BT}}
69
+ }
70
+ ```