Show / Hide Table of Contents

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.

Inheritance
System.Object
Keras
Base
Callback
CSVLogger
Implements
System.IDisposable
Inherited Members
Base.Parameters
Base.None
Base.Init()
Base.ToPython()
Base.InvokeStaticMethod(Object, String, Dictionary<String, Object>)
Base.InvokeMethod(String, Dictionary<String, Object>)
Base.Item[String]
Keras.Instance
Keras.keras
Keras.keras2onnx
Keras.tfjs
Keras.Dispose()
Keras.ToTuple(Array)
Keras.ToList(Array)
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 Source

CSVLogger(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
  • Improve this Doc
  • View Source
Back to top Generated by DocFX