kwotsin / TensorFlow-ENet

TensorFlow implementation of ENet
MIT License
257 stars 123 forks source link

Small typo in predict_segmentation.py #20

Open tonyzhao6 opened 6 years ago

tonyzhao6 commented 6 years ago

Hi there,

First of all, thank you for this contribution!

Just a small typo on line 112---it should be:

if i * 10 + j == 233:

or perhaps, better:

if i * 10 + j == len(images_list):