joelniklaus HF Staff commited on
Commit
1697e31
·
verified ·
1 Parent(s): 19b1240

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +73 -34
README.md CHANGED
@@ -1,39 +1,78 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
  dataset_info:
8
  features:
9
- - name: text
10
- dtype: string
11
- - name: id
12
- dtype: string
13
- - name: dump
14
- dtype: string
15
- - name: url
16
- dtype: string
17
- - name: date
18
- dtype: string
19
- - name: file_path
20
- dtype: string
21
- - name: language
22
- dtype: string
23
- - name: language_score
24
- dtype: float64
25
- - name: token_count
26
- dtype: int64
27
- - name: score
28
- dtype: float64
29
- - name: int_score
30
- dtype: int64
31
- - name: dataset
32
- dtype: string
33
  splits:
34
- - name: train
35
- num_bytes: 528906055717
36
- num_examples: 102063987
37
- download_size: 302789586187
38
- dataset_size: 528906055717
 
 
 
 
 
 
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
2
  dataset_info:
3
  features:
4
+ - name: text
5
+ dtype: string
6
+ - name: id
7
+ dtype: string
8
+ - name: dump
9
+ dtype: string
10
+ - name: url
11
+ dtype: string
12
+ - name: date
13
+ dtype: string
14
+ - name: file_path
15
+ dtype: string
16
+ - name: language
17
+ dtype: string
18
+ - name: language_score
19
+ dtype: float64
20
+ - name: token_count
21
+ dtype: int64
22
+ - name: score
23
+ dtype: float64
24
+ - name: int_score
25
+ dtype: int64
26
+ - name: dataset
27
+ dtype: string
28
  splits:
29
+ - name: train
30
+ num_examples: 102063987
31
+ license: odc-by
32
+ language:
33
+ - en
34
+ size_categories:
35
+ - 100M<n<1B
36
+ tags:
37
+ - pretraining
38
+ - smol-data
39
+ pretty_name: FineWeb-Edu 100BT (Shuffled)
40
  ---
41
+
42
+ # FineWeb-Edu 100BT (Shuffled)
43
+
44
+ A globally shuffled version of [HuggingFaceFW/fineweb_edu_100BT](https://huggingface.co/datasets/HuggingFaceFW/fineweb_edu_100BT).
45
+
46
+ Part of the [Smol-Data](https://huggingface.co/collections/HuggingFaceFW/smol-data) collection — tried and tested mixes for strong pretraining.
47
+
48
+ ## Dataset Description
49
+
50
+ This dataset contains the same ~100B tokens as [fineweb_edu_100BT](https://huggingface.co/datasets/HuggingFaceFW/fineweb_edu_100BT) but with all documents globally shuffled (seed=42). Use this version when you need randomized document ordering for pretraining.
51
+
52
+ ## How It Was Created
53
+
54
+ The unshuffled dataset was loaded into memory, shuffled with `dataset.shuffle(seed=42)`, and re-uploaded with 100 shards. See the [smol_data.py](https://github.com/huggingface/datatrove/blob/main/examples/smol_data.py) script for details.
55
+
56
+ ## Usage
57
+
58
+ ```python
59
+ from datasets import load_dataset
60
+
61
+ ds = load_dataset("HuggingFaceFW/fineweb_edu_100BT-shuffled", split="train", streaming=True)
62
+ for sample in ds:
63
+ print(sample["text"][:200])
64
+ break
65
+ ```
66
+
67
+ ## Citation
68
+
69
+ ```bibtex
70
+ @misc{niklaus2025finewebedu100bt,
71
+ title={FineWeb-Edu 100BT},
72
+ author={Joel Niklaus and Hynek Kydl{\'\i}{\v{c}}ek},
73
+ year={2026},
74
+ publisher={Hugging Face},
75
+ journal={Hugging Face repository},
76
+ howpublished={\url{https://huggingface.co/datasets/HuggingFaceFW/fineweb_edu_100BT-shuffled}}
77
+ }
78
+ ```