Is it expected that the EarlyStopping callback’s behavior depends on the display_every option, i.e. that
early_stopping = dde.callbacks.EarlyStopping(min_delta=1e-3, patience=10)
model.train(iterations=100, display_every=10, callbacks=[early_stopping])
and
early_stopping = dde.callbacks.EarlyStopping(min_delta=1e-3, patience=10)
model.train(iterations=100, display_every=100, callbacks=[early_stopping])
work differently?
Is it expected that the
EarlyStoppingcallback’s behavior depends on thedisplay_everyoption, i.e. thatand
work differently?