styal commited on
Commit
4b40ea7
·
verified ·
1 Parent(s): 5511ef3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -29,3 +29,11 @@ configs:
29
  - split: train
30
  path: data/train-*
31
  ---
 
 
 
 
 
 
 
 
 
29
  - split: train
30
  path: data/train-*
31
  ---
32
+ Dataset created with this filter from Avelina/python-edu.
33
+ ```
34
+ def my_filter(example):
35
+ score = example["score"] > 4.1
36
+ lengh = example["length_bytes"] < 3000 and example["length_bytes"] > 200
37
+ return score and lengh
38
+ ```
39
+ A is_english boolean have been added with the model papluca/xlm-roberta-base-language-detection.