Class CSVLogger
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.
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Callbacks
Assembly: Keras.dll
Syntax
public class CSVLogger : Callback, IDisposable
Constructors
| Improve this Doc View SourceCSVLogger(String, String, Boolean)
Initializes a new instance of the LearningRateScheduler class.
Declaration
public CSVLogger(string filename, string separator = ",", bool append = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | filename | filename of the csv file, e.g. 'run/log.csv'. |
System.String | separator | string used to separate elements in the csv file. |
System.Boolean | append | True: append if file exists (useful for continuing training). False: overwrite existing file, |
Implements
System.IDisposable