styal commited on
Commit
bf1fe21
·
verified ·
1 Parent(s): 5a8f511

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
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.