From 44f0e1fbde95165d863f94889f15fe5871ed587a Mon Sep 17 00:00:00 2001 From: Alok P Date: Wed, 12 May 2021 10:07:53 +0900 Subject: [PATCH] Missing dot in the sample image path --- detect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/detect.py b/detect.py index d0ade74..fbda562 100644 --- a/detect.py +++ b/detect.py @@ -15,7 +15,7 @@ 'path to weights file') flags.DEFINE_boolean('tiny', False, 'yolov3 or yolov3-tiny') flags.DEFINE_integer('size', 416, 'resize images to') -flags.DEFINE_list('images', '/data/images/dog.jpg', 'list with paths to input images') +flags.DEFINE_list('images', './data/images/dog.jpg', 'list with paths to input images') flags.DEFINE_string('tfrecord', None, 'tfrecord instead of image') flags.DEFINE_string('output', './detections/', 'path to output folder') flags.DEFINE_integer('num_classes', 80, 'number of classes in the model') @@ -75,4 +75,4 @@ def main(_argv): try: app.run(main) except SystemExit: - pass \ No newline at end of file + pass