Delete loading script auxiliary file
Browse files
main.py
DELETED
|
@@ -1,20 +0,0 @@
|
|
| 1 |
-
#!/usr/bin/python3
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
from datasets import load_dataset
|
| 4 |
-
|
| 5 |
-
dataset = load_dataset(
|
| 6 |
-
# "qgyd2021/cppe-5",
|
| 7 |
-
"cppe-5.py",
|
| 8 |
-
name=None,
|
| 9 |
-
split="train",
|
| 10 |
-
streaming=True
|
| 11 |
-
)
|
| 12 |
-
|
| 13 |
-
for sample in dataset:
|
| 14 |
-
print(sample)
|
| 15 |
-
# image = sample["image"]
|
| 16 |
-
# image.show()
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
if __name__ == '__main__':
|
| 20 |
-
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|