fix
Browse files- README.md +9 -9
- dogs-video-object-tracking-dataset.py +1 -1
README.md
CHANGED
@@ -45,10 +45,10 @@ dataset_info:
|
|
45 |
dtype: string
|
46 |
splits:
|
47 |
- name: train
|
48 |
-
num_bytes:
|
49 |
num_examples: 52
|
50 |
-
download_size:
|
51 |
-
dataset_size:
|
52 |
- config_name: video_02
|
53 |
features:
|
54 |
- name: id
|
@@ -85,10 +85,10 @@ dataset_info:
|
|
85 |
dtype: string
|
86 |
splits:
|
87 |
- name: train
|
88 |
-
num_bytes:
|
89 |
num_examples: 58
|
90 |
-
download_size:
|
91 |
-
dataset_size:
|
92 |
- config_name: video_03
|
93 |
features:
|
94 |
- name: id
|
@@ -125,10 +125,10 @@ dataset_info:
|
|
125 |
dtype: string
|
126 |
splits:
|
127 |
- name: train
|
128 |
-
num_bytes:
|
129 |
num_examples: 49
|
130 |
-
download_size:
|
131 |
-
dataset_size:
|
132 |
---
|
133 |
|
134 |
# Dogs Video Object Tracking Dataset
|
|
|
45 |
dtype: string
|
46 |
splits:
|
47 |
- name: train
|
48 |
+
num_bytes: 25910
|
49 |
num_examples: 52
|
50 |
+
download_size: 313334253
|
51 |
+
dataset_size: 25910
|
52 |
- config_name: video_02
|
53 |
features:
|
54 |
- name: id
|
|
|
85 |
dtype: string
|
86 |
splits:
|
87 |
- name: train
|
88 |
+
num_bytes: 28900
|
89 |
num_examples: 58
|
90 |
+
download_size: 67368145
|
91 |
+
dataset_size: 28900
|
92 |
- config_name: video_03
|
93 |
features:
|
94 |
- name: id
|
|
|
125 |
dtype: string
|
126 |
splits:
|
127 |
- name: train
|
128 |
+
num_bytes: 24416
|
129 |
num_examples: 49
|
130 |
+
download_size: 148418007
|
131 |
+
dataset_size: 24416
|
132 |
---
|
133 |
|
134 |
# Dogs Video Object Tracking Dataset
|
dogs-video-object-tracking-dataset.py
CHANGED
@@ -168,7 +168,7 @@ class DogsVideoObjectTrackingDataset(datasets.GeneratorBasedBuilder):
|
|
168 |
|
169 |
yield idx, {
|
170 |
"id": image_id,
|
171 |
-
"name":
|
172 |
"image": image_path,
|
173 |
"mask": f"{image_path.replace('images', 'boxes')}",
|
174 |
"shapes": shapes,
|
|
|
168 |
|
169 |
yield idx, {
|
170 |
"id": image_id,
|
171 |
+
"name": image_path,
|
172 |
"image": image_path,
|
173 |
"mask": f"{image_path.replace('images', 'boxes')}",
|
174 |
"shapes": shapes,
|