rasdani commited on
Commit
b674cf4
·
verified ·
1 Parent(s): ab769bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -51,3 +51,11 @@ configs:
51
  - split: train
52
  path: data/train-*
53
  ---
 
 
 
 
 
 
 
 
 
51
  - split: train
52
  path: data/train-*
53
  ---
54
+ ```python
55
+ import datasets
56
+
57
+ ds = datasets.load_dataset("open-r1/verifiable-coding-problems-python_decontaminated", split="train")
58
+ ds_tc_6 = ds.filter(lambda x: len(x["verification_info"]["test_cases"]) <= 6)
59
+
60
+ ds_tc_6.push_to_hub("rasdani/verifiable-coding-problems-python_decontaminated_six_test_cases")
61
+ ```