Type CSVLogger
Namespace tensorflow.keras.callbacks
Parent Callback
Interfaces ICSVLogger
Callback that streams epoch results to a csv file. Supports all values that can be represented as a string,
including 1D iterables such as np.ndarray. Example:
Show Example
csv_logger = CSVLogger('training.log') model.fit(X_train, Y_train, callbacks=[csv_logger])