- After training a Keras model using
model.fit(...)
, thehistory
object is returned. - It is a dictionary with keys corresponding to the monitored metrics (typically
loss
and any additional metrics specified inmodel.compile(...)
).
model.fit(...)
, the history
object is returned.loss
and any additional metrics specified in model.compile(...)
).
Leave a Reply