chanelcolgate
commited on
Commit
•
325e195
1
Parent(s):
dbad997
modified: yenthienviet.py
Browse files- README.md +44 -4
- yenthienviet.py +1 -1
README.md
CHANGED
@@ -1,9 +1,49 @@
|
|
1 |
---
|
2 |
-
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
|
3 |
-
# Doc / guide: https://huggingface.co/docs/hub/datasets-cards
|
4 |
-
{
|
5 |
pretty_name: YENTHIENVIET
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
---
|
8 |
|
9 |
# Dataset Card for Dataset Name
|
|
|
1 |
---
|
|
|
|
|
|
|
2 |
pretty_name: YENTHIENVIET
|
3 |
+
dataset_info:
|
4 |
+
features:
|
5 |
+
- name: image
|
6 |
+
dtype: image
|
7 |
+
- name: image_id
|
8 |
+
dtype: int64
|
9 |
+
- name: objects
|
10 |
+
sequence:
|
11 |
+
- name: id
|
12 |
+
dtype: int64
|
13 |
+
- name: area
|
14 |
+
dtype: float64
|
15 |
+
- name: bbox
|
16 |
+
sequence: float32
|
17 |
+
length: 4
|
18 |
+
- name: label
|
19 |
+
dtype:
|
20 |
+
class_label:
|
21 |
+
names:
|
22 |
+
'0': hop_dln
|
23 |
+
'1': hop_jn
|
24 |
+
'2': hop_vtg
|
25 |
+
'3': hop_ytv
|
26 |
+
'4': lo_kids
|
27 |
+
'5': lo_ytv
|
28 |
+
'6': loc_ytv
|
29 |
+
'7': loc_kids
|
30 |
+
'8': loc_dln
|
31 |
+
'9': bot_dln
|
32 |
+
'10': loc_jn
|
33 |
+
- name: iscrowd
|
34 |
+
dtype: bool
|
35 |
+
splits:
|
36 |
+
- name: train
|
37 |
+
num_bytes: 82367458
|
38 |
+
num_examples: 278
|
39 |
+
- name: val
|
40 |
+
num_bytes: 16692841
|
41 |
+
num_examples: 79
|
42 |
+
- name: test
|
43 |
+
num_bytes: 17710143
|
44 |
+
num_examples: 76
|
45 |
+
download_size: 112352919
|
46 |
+
dataset_size: 116770442
|
47 |
---
|
48 |
|
49 |
# Dataset Card for Dataset Name
|
yenthienviet.py
CHANGED
@@ -28,7 +28,7 @@ _SPLITS = ["train", "val", "test"]
|
|
28 |
_PATHS = {
|
29 |
"annotations": {
|
30 |
"train": Path("_annotations.coco.train.json"),
|
31 |
-
"val": Path("
|
32 |
"test": Path("_annotations.coco.test.json"),
|
33 |
},
|
34 |
"images": {
|
|
|
28 |
_PATHS = {
|
29 |
"annotations": {
|
30 |
"train": Path("_annotations.coco.train.json"),
|
31 |
+
"val": Path("_annotations.coco.val.json"),
|
32 |
"test": Path("_annotations.coco.test.json"),
|
33 |
},
|
34 |
"images": {
|