Merge pull request #4143 from pmenglund/image_retraining_error_message
improve error message when a category is empty
This commit is contained in:
commit
68a74ea985
@ -268,7 +268,8 @@ def get_image_path(image_lists, label_name, index, image_dir, category):
|
||||
tf.logging.fatal('Category does not exist %s.', category)
|
||||
category_list = label_lists[category]
|
||||
if not category_list:
|
||||
tf.logging.fatal('Category has no images - %s.', category)
|
||||
tf.logging.fatal('Label %s has no images in the category %s.',
|
||||
label_name, category)
|
||||
mod_index = index % len(category_list)
|
||||
base_name = category_list[mod_index]
|
||||
sub_dir = label_lists['dir']
|
||||
|
Loading…
Reference in New Issue
Block a user