File size: 328 Bytes
d3a579f
 
 
 
 
6698026
 
d3a579f
 
d5a8dcd
d3a579f
 
 
 
d5a8dcd
 
d3a579f
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from datasets import load_dataset

dataset = load_dataset(
    # "qgyd2021/cppe-5",
    "cppe-5.py",
    name=None,
    split="train",
    streaming=True
)

for sample in dataset:
    print(sample)
    # image = sample["image"]
    # image.show()


if __name__ == '__main__':
    pass