fineweb_100BT
收藏资源简介:
# FineWeb 100BT A ~100 billion token English subset of [FineWeb](https://huggingface.co/datasets/HuggingFaceFW/fineweb), created for efficient pretraining experiments. Part of the [Smol-Data](https://huggingface.co/collections/HuggingFaceFW/smol-data) collection — tried and tested mixes for strong pretraining. ## Dataset Description This dataset was created by randomly sampling from the full FineWeb dataset (~16.9T 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. A pre-shuffled version is available at [HuggingFaceFW/fineweb_100BT-shuffled](https://huggingface.co/datasets/HuggingFaceFW/fineweb_100BT-shuffled). ## How It Was Created 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. ## Usage ```python from datasets import load_dataset ds = load_dataset("HuggingFaceFW/fineweb_100BT", split="train", streaming=True) for sample in ds: print(sample["text"][:200]) break ``` ## Citation ```bibtex @misc{niklaus2026smoldata, title={SmolData}, author={Joel Niklaus and Hynek Kydl{\'\i}{\v{c}}ek}, year={2026}, publisher={Hugging Face}, journal={Hugging Face repository}, howpublished={\url{https://huggingface.co/collections/HuggingFaceFW/smol-data}} } ```



