Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Finemath-4plus filtered using this code:
|
| 2 |
+
```
|
| 3 |
+
def my_filter(example):
|
| 4 |
+
lscore = example["language_score"] > 0.9
|
| 5 |
+
score = example["score"] > 4
|
| 6 |
+
lengh = example["token_count"] < 5000
|
| 7 |
+
return lscore and score and lengh
|
| 8 |
+
```
|
| 9 |
+
This remove 86% of the dataset in average.
|