Show / Hide Table of Contents

Class Adamax

Adamax optimizer from Adam paper's Section 7. It is a variant of Adam based on the infinity norm.Default parameters follow those provided in the paper.

Inheritance
System.Object
Keras
Base
Adamax
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.Optimizers
Assembly: Keras.dll
Syntax
public class Adamax : Base, IDisposable

Constructors

| Improve this Doc View Source

Adamax(Single, Single, Single, Nullable<Single>, Single)

Declaration
public Adamax(float lr = 0.002F, float beta_1 = 0.9F, float beta_2 = 0.999F, float? epsilon = default(float? ), float decay = 0F)
Parameters
Type Name Description
System.Single lr
System.Single beta_1
System.Single beta_2
System.Nullable<System.Single> epsilon
System.Single decay

Implements

System.IDisposable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX