mrharicot/monodepth

Incorrect time left when resuming training

Opened this issue · 0 comments

Not exactly a major issue, but

training_time_left = (num_total_steps / step - 1.0) * time_sofar

Should be
training_time_left = ((num_total_steps - step) / (step - start_step)) * time_sofar