Changed limit for used images to 32

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-07-25 15:33:41 +02:00
parent 505ea330fc
commit 6034198262

View File

@ -443,7 +443,7 @@ def load_scenenet_data(photo_paths: Sequence[Sequence[str]],
if not frame_instances: if not frame_instances:
continue # skip images that do not contain instances continue # skip images that do not contain instances
if evaluation and used_images >= 30: if evaluation and used_images >= 32:
continue continue
for instance in frame_instances: for instance in frame_instances: