--- license: odc-by language: - en task_categories: - text-classification size_categories: - 100K [!NOTE] > The `label` column is thresholded on the **float** score, not the rounded int — hence the 81 rows with `score-int = 2` but `label = high_quality`. If you filter, use `fineweb-edu-score-float` or the label; mixing them with the int column will give slightly inconsistent subsets. ## Using it ```python from datasets import load_dataset ds = load_dataset("davanstrien/fineweb-edu-showcase", split="train") high = ds.filter(lambda r: r["fineweb-edu-score-label"] == "high_quality") ``` Plausible uses beyond the tutorial: a ready-made small testbed for score-threshold experiments against the FineWeb-Edu classifier, or a quick source of quality-stratified English web text. For serious educational-quality filtering use [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) itself — that's the full-scale version of exactly this pipeline. ## Licence and credit Text is from FineWeb and carries its [ODC-By 1.0](https://opendatacommons.org/licenses/by/1-0/) licence (with CommonCrawl's terms of use upstream of that). The score columns are model outputs from the FineWeb-Edu classifier. Source data by [HuggingFaceFW](https://huggingface.co/HuggingFaceFW) (FineWeb, FineWeb-Edu classifier); pipeline stage by [NVIDIA NeMo Curator](https://github.com/NVIDIA-NeMo/Curator). Scored and repackaged by [Daniel van Strien](https://huggingface.co/davanstrien). ```bibtex @inproceedings{penedo2024fineweb, title={The FineWeb Datasets: Decanting the Web for the Finest Text Data at Scale}, author={Penedo, Guilherme and Kydl{\'\i}{\v{c}}ek, Hynek and Lozhkov, Anton and Mitchell, Margaret and Raffel, Colin and Von Werra, Leandro and Wolf, Thomas and others}, booktitle={NeurIPS Datasets and Benchmarks}, year={2024} } ```