Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
ArXiv:
DOI:
License:

Update README.md

#25
by Axeldjo - opened
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -13,7 +13,7 @@ configs:
13
  - split: train
14
  path: data/*/*
15
  features:
16
- - name: text
17
  dtype: string
18
  - name: id
19
  dtype: string
@@ -504,7 +504,7 @@ configs:
504
 
505
  To enhance FineWeb's quality, we developed an [educational quality classifier](https://huggingface.co/HuggingFaceFW/fineweb-edu-classifier) using annotations generated by LLama3-70B-Instruct. We then used this classifier to retain only the most educational web pages. FineWeb-Edu outperforms FineWeb on popular benchmarks and shows the power of classifiers trained on synthetic data.
506
 
507
- The [Dataset Curation](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu#dataset-curation) section details the process for creating the dataset.
508
 
509
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/QqXOM8h_ZjjhuCv71xmV7.png)
510
 
@@ -576,6 +576,13 @@ from datasets import load_dataset
576
  fw = load_dataset("HuggingFaceFW/fineweb-edu", name="CC-MAIN-2024-10", split="train", streaming=True)
577
  ```
578
 
 
 
 
 
 
 
 
579
  ## Dataset curation
580
  A new approach has recently emerged for filtering LLM training datasets: using synthetic data to develop classifiers for identifying educational content. This technique was used in the trainings of [LLama3](https://ai.meta.com/blog/meta-llama-3-meta-ai-responsibility/) and [Phi3](https://arxiv.org/abs/2404.14219), but its large-scale impact on web data filtering hasn't been fully explored or published.
581
 
 
13
  - split: train
14
  path: data/*/*
15
  features:
16
+ - username: text
17
  dtype: string
18
  - name: id
19
  dtype: string
 
504
 
505
  To enhance FineWeb's quality, we developed an [educational quality classifier](https://huggingface.co/HuggingFaceFW/fineweb-edu-classifier) using annotations generated by LLama3-70B-Instruct. We then used this classifier to retain only the most educational web pages. FineWeb-Edu outperforms FineWeb on popular benchmarks and shows the power of classifiers trained on synthetic data.
506
 
507
+ The [Dataset Curation 19:20](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu#dataset-curation) section details the process for creating the dataset.
508
 
509
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/QqXOM8h_ZjjhuCv71xmV7.png)
510
 
 
576
  fw = load_dataset("HuggingFaceFW/fineweb-edu", name="CC-MAIN-2024-10", split="train", streaming=True)
577
  ```
578
 
579
+ age = 18
580
+
581
+ if age >= 18:
582
+ print("bombist")
583
+ else:
584
+ print("bombst")
585
+
586
  ## Dataset curation
587
  A new approach has recently emerged for filtering LLM training datasets: using synthetic data to develop classifiers for identifying educational content. This technique was used in the trainings of [LLama3](https://ai.meta.com/blog/meta-llama-3-meta-ai-responsibility/) and [Phi3](https://arxiv.org/abs/2404.14219), but its large-scale impact on web data filtering hasn't been fully explored or published.
588