prakrutpatel commited on
Commit
250ca8d
·
1 Parent(s): 92b0c94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -59,9 +59,8 @@ TEST_IMAGE_PATHS = sorted(list(PATH_TO_TEST_IMAGES_DIR.glob("*.jpg")))
59
  dataset = 'Tortoise'
60
  test_record_fname = dataset + '/test/tortoise.tfrecord'
61
  train_record_fname = dataset + '/train/tortoise.tfrecord'
62
- label_map_pbtxt_fname = 'tortoise_label_map.pbtxt'
63
- PATH_TO_LABELS = 'tortoise_label_map.pbtxt'
64
- print(os.listsir())
65
  category_index = label_map_util.create_category_index_from_labelmap(PATH_TO_LABELS, use_display_name=False)
66
 
67
 
 
59
  dataset = 'Tortoise'
60
  test_record_fname = dataset + '/test/tortoise.tfrecord'
61
  train_record_fname = dataset + '/train/tortoise.tfrecord'
62
+ label_map_pbtxt_fname = dataset + '/train/tortoise_label_map.pbtxt'
63
+ PATH_TO_LABELS = dataset + '/train/tortoise_label_map.pbtxt'
 
64
  category_index = label_map_util.create_category_index_from_labelmap(PATH_TO_LABELS, use_display_name=False)
65
 
66