MarvinTeichmann / KittiSeg

A Kitti Road Segmentation model implemented in tensorflow.
MIT License
910 stars 403 forks source link

The meaning of image_iter,eval_iter? #143

Open lily10086 opened 6 years ago

lily10086 commented 6 years ago

I dont't know the meaning of image_iter,eval_iter? Thanks!!

rodolfolotte commented 6 years ago

I'm not so sure about the first, cause it never got saved during my trainings, but...

image_iter = interval of iterations you would like to have training images saved eval_iter = interval of iterations you would like to evaluate your model during training

For instance, a training with 1000 iterations, a eval_iter = 200 will evaluate your model 5 times. 200, 400, 600, 800 and 1000. Same for image_iter.