Upload folder using huggingface_hub
Browse files- .gitattributes +0 -1
- 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 |
-
|
| 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])
|
|
|