Class LearningRateScheduler
Learning rate scheduler.
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 LearningRateScheduler : Callback, IDisposable
Constructors
| Improve this Doc View SourceLearningRateScheduler(Object, Int32)
Initializes a new instance of the LearningRateScheduler class.
Declaration
public LearningRateScheduler(object schedule, int verbose = 0)
Parameters
Type | Name | Description |
---|---|---|
System.Object | schedule | a function that takes an epoch index as input (integer, indexed from 0) and current learning rate and returns a new learning rate as output (float). |
System.Int32 | verbose | int. 0: quiet, 1: update messages. |
Implements
System.IDisposable