Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Datasets:
intelli-zen
/
cppe-5
like
0
Follow
IntelliZen
2
Tasks:
Object Detection
Size:
100M<n<1B
Tags:
object detection
License:
apache-2.0
Dataset card
Files
Files and versions
Community
4
bf3f8bb
cppe-5
/
main.py
qgyd2021
[update]add code
d3a579f
about 1 year ago
raw
Copy download link
history
blame
Safe
234 Bytes
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from
datasets
import
load_dataset
dataset = load_dataset(
"cppe5.py"
,
name=
None
,
split=
"train"
,
)
for
sample
in
dataset:
print
(sample)
if
__name__ ==
'__main__'
:
pass