cwolff commited on
Commit
c1d2342
·
verified ·
1 Parent(s): 5290506

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .gitattributes +0 -1
  2. test.py +3 -4
.gitattributes CHANGED
@@ -57,4 +57,3 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
- data.jsonl filter=lfs diff=lfs merge=lfs -text
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
test.py CHANGED
@@ -49,7 +49,6 @@ def check_jsonl_file(filename):
49
  if __name__ == "__main__":
50
  check_jsonl_file("data.jsonl")
51
 
52
- ds = load_dataset("cwolff/schemapile")
53
-
54
- for split in ds:
55
- print(f"Split: {split}")
 
49
  if __name__ == "__main__":
50
  check_jsonl_file("data.jsonl")
51
 
52
+ ds = load_dataset("cwolff/schemapile")["full"]
53
+ print(f"Loaded dataset with {len(ds)} records.")
54
+ print(ds[0])