Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Dataset created by filtering the fineweb-edu-dedup subset of smoll-corpus using this filter.
|
| 2 |
+
```
|
| 3 |
+
def my_filter(example):
|
| 4 |
+
return example["metadata"]["token_count"] <= 3000 and example["metadata"]["score"] * example["metadata"]["language_score"] > 0.95*3.8 and example["metadata"]["language"] == "en"
|
| 5 |
+
|
| 6 |
+
```
|
| 7 |
+
Each file contains approximately 31k rows.
|