You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: introduction_to_amazon_algorithms/object_detection_pascalvoc_coco/object_detection_image_json_format.ipynb
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -146,8 +146,8 @@
146
146
"outputs": [],
147
147
"source": [
148
148
"%%bash\n",
149
-
"unzip -q val2017.zip\n",
150
-
"unzip -q annotations_trainval2017.zip\n",
149
+
"unzip -qo val2017.zip\n",
150
+
"unzip -qo annotations_trainval2017.zip\n",
151
151
"rm val2017.zip annotations_trainval2017.zip"
152
152
]
153
153
},
@@ -287,10 +287,9 @@
287
287
"metadata": {},
288
288
"outputs": [],
289
289
"source": [
290
-
"# jsons = os.listdir('generated')\n",
291
290
"import os\n",
292
291
"import json\n",
293
-
"jsons = os.listdir('validation_annotation')\n",
292
+
"jsons = os.listdir('generated')\n",
294
293
"\n",
295
294
"print ('There are {} images have annotation files'.format(len(jsons)))"
0 commit comments