You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, it should be 0, n_iter is only here for tensorflow purpose. I am surprised this does not make the code crash, since the variable start_epoch is not defined 🤔
We could probably do better by inferring the n_iter from args.start_epoch and dataset size (like len(train_set) * args.start_epoch )
https://github.com/ClementPinard/FlowNetPytorch/blob/60c72a9c054e6e525eca5cc129ccafc11758d88f/main.py#L91C1-L91C7
in the line 91 ,it should be : n_iter = int(args.start_epoch)
The text was updated successfully, but these errors were encountered: