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
The code calls model.train() twice in the inner loop of the train function, which is redundant and can be removed. The second call to model.train() does not provide any additional value and might be confusing.
The code calls
model.train()twice in the inner loop of thetrainfunction, which is redundant and can be removed. The second call tomodel.train()does not provide any additional value and might be confusing.