zkolter commited on
Commit
1c7235a
·
1 Parent(s): 2cd8008

Expand dataset card metadata and documentation

Browse files
Files changed (1) hide show
  1. README.md +119 -9
README.md CHANGED
@@ -1,15 +1,125 @@
1
- # FineWebEDU Sample Text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- This dataset repo contains a gzip-compressed plain-text sample derived from the beginning of the [HuggingFaceFW/fineweb-edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) dataset.
4
 
5
- ## Contents
6
 
7
- - `finewebedu_first_1gb.txt.gz`: the first 1 GiB of concatenated `text` content, exported to UTF-8 plain text and compressed with `gzip`
8
 
9
- ## Provenance
10
 
11
- - Source dataset: `HuggingFaceFW/fineweb-edu`
12
- - Source split/config: `CC-MAIN-2013-20`, `train`
13
- - Source shard: `data/CC-MAIN-2013-20/train-00000-of-00014.parquet`
 
 
14
 
15
- This repo is intended as a convenient text-only sample for coursework and experimentation.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: odc-by
5
+ pretty_name: FineWebEDU Sample Text
6
+ size_categories:
7
+ - 100K<n<1M
8
+ task_categories:
9
+ - text-generation
10
+ tags:
11
+ - text
12
+ - web
13
+ - educational
14
+ - sample
15
+ - gzip
16
+ ---
17
 
18
+ # Dataset Card for FineWebEDU Sample Text
19
 
20
+ ## Dataset Details
21
 
22
+ ### Dataset Description
23
 
24
+ FineWebEDU Sample Text is a small derivative dataset intended for coursework and local experimentation. It contains the first 1 GiB of UTF-8 plain text extracted from the beginning of the [`HuggingFaceFW/fineweb-edu`](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) dataset and distributed here as a single gzip-compressed text file.
25
 
26
+ - **Curated by:** Zico Kolter (sample packaging); upstream dataset curated by Hugging Face
27
+ - **Funded by [optional]:** Not applicable
28
+ - **Shared by [optional]:** Zico Kolter
29
+ - **Language(s) (NLP):** English
30
+ - **License:** Open Data Commons Attribution License (ODC-By) v1.0; use is also subject to Common Crawl Terms of Use
31
 
32
+ ### Dataset Sources
33
+
34
+ - **Repository:** https://huggingface.co/datasets/zkolter/FineWebEDU-Sample-Text
35
+ - **Upstream dataset:** https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu
36
+ - **Paper [optional]:** https://arxiv.org/abs/2406.17557
37
+
38
+ ## Uses
39
+
40
+ ### Direct Use
41
+
42
+ This sample is suitable for small-scale tokenizer experiments, compression and I/O benchmarks, course assignments, and toy language-model preprocessing pipelines where a single local text file is more convenient than streaming parquet data.
43
+
44
+ ### Out-of-Scope Use
45
+
46
+ This repo is not a faithful substitute for the full FineWeb-Edu release. It should not be used where exact document boundaries, per-record metadata, representative sampling, or complete upstream coverage matter.
47
+
48
+ ## Dataset Structure
49
+
50
+ - **File:** `finewebedu_first_1gb.txt.gz`
51
+ - **Compression:** gzip
52
+ - **Uncompressed format:** UTF-8 plain text
53
+ - **Uncompressed size:** exactly 1,073,741,824 bytes
54
+ - **Compressed size in this repo:** 406,983,843 bytes
55
+ - **Approximate number of source documents included:** 221,084
56
+ - **Source config/split/shard:** `CC-MAIN-2013-20` / `train` / `data/CC-MAIN-2013-20/train-00000-of-00014.parquet`
57
+ - **Splits:** none
58
+
59
+ This is a raw text corpus dump, not JSONL, CSV, or a line-delimited dataset. Source documents were concatenated in order with a trailing newline after each document, but documents can themselves contain internal newlines. As a result, line boundaries do not reliably correspond to document boundaries.
60
+
61
+ ## Dataset Creation
62
+
63
+ ### Curation Rationale
64
+
65
+ This sample was created to make a subset of FineWeb-Edu easy to use in local coursework without downloading multi-gigabyte parquet shards or setting up parquet-specific tooling.
66
+
67
+ ### Source Data
68
+
69
+ #### Data Collection and Processing
70
+
71
+ The source text came from the public `HuggingFaceFW/fineweb-edu` dataset. The sample was built by reading the `text` column from the first shard of the `CC-MAIN-2013-20` training split and concatenating documents in source order until the output reached exactly 1 GiB.
72
+
73
+ To satisfy the fixed-size target, the final document was truncated on a UTF-8 character boundary. This means the sample preserves document order from the start of the shard, but the last document is incomplete.
74
+
75
+ #### Who are the source data producers?
76
+
77
+ The underlying text originates from public web pages included in Common Crawl and filtered by the FineWeb-Edu curation pipeline. The ultimate source-data producers are the original web authors and publishers.
78
+
79
+ #### Personal and Sensitive Information
80
+
81
+ This repo does not add annotations or perform additional privacy filtering beyond the upstream dataset. Because the content is derived from public web pages, it may still contain personal data, copyrighted material references, or other sensitive content present in the original pages.
82
+
83
+ ## Bias, Risks, and Limitations
84
+
85
+ This sample inherits the biases and risks of Common Crawl and FineWeb-Edu, including uneven topical coverage, language and domain imbalance, and the presence of harmful or low-quality web content despite upstream filtering.
86
+
87
+ This repo also introduces additional limitations:
88
+
89
+ - it is a prefix sample from a single shard rather than a representative sample of the full dataset;
90
+ - it discards all upstream metadata except the extracted text;
91
+ - it stores data in a raw concatenated text format rather than record-oriented examples; and
92
+ - the final source document is truncated.
93
+
94
+ ### Recommendations
95
+
96
+ Use this repo for lightweight experimentation only. For serious model training, evaluation, or dataset analysis, prefer the upstream FineWeb-Edu release and retain per-document metadata and provenance.
97
+
98
+ ## Citation
99
+
100
+ If you use this sample, cite the upstream FineWeb-Edu dataset and paper:
101
+
102
+ **BibTeX:**
103
+
104
+ ```bibtex
105
+ @misc{lozhkov2024fineweb-edu,
106
+ author = {Lozhkov, Anton and Ben Allal, Loubna and von Werra, Leandro and Wolf, Thomas},
107
+ title = {FineWeb-Edu: The Finest Collection of Educational Content},
108
+ year = {2024},
109
+ url = {https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu},
110
+ doi = {10.57967/hf/2497},
111
+ publisher = {Hugging Face}
112
+ }
113
+ ```
114
+
115
+ ## More Information
116
+
117
+ This repo is a convenience sample derived from the upstream dataset for classroom use. It is not an official Hugging Face release.
118
+
119
+ ## Dataset Card Authors
120
+
121
+ Zico Kolter
122
+
123
+ ## Dataset Card Contact
124
+
125
+ zkolter@cs.cmu.edu