modelbuilderhq commited on
Commit
a16816d
·
verified ·
1 Parent(s): 551c5bc

Delete check_yaml.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. check_yaml.py +0 -8
check_yaml.py DELETED
@@ -1,8 +0,0 @@
1
- import yaml
2
-
3
- with open('openenv.yaml') as f:
4
- d = yaml.safe_load(f)
5
-
6
- for t in d.get("tasks", []):
7
- g = t.get("grader")
8
- print(f"{t['id']}: grader type = {type(g).__name__}, value = {g}")