AdaMax

struct defined in module Flux.Optimise


			AdaMax(η = 0.001, β::Tuple = (0.9, 0.999), ϵ = 1.0e-8)

AdaMax is a variant of Adam based on the ∞-norm.

Parameters

  • Learning rate ( η): Amount by which gradients are discounted before updating the weights.

  • Decay of momentums ( β::Tuple): Exponential decay for the first (β1) and the second (β2) momentum estimate.

Examples


			
			
			
			opt
			 
			=
			 
			

			AdaMax
			(
			)
			

			

			
			opt
			 
			=
			 
			

			AdaMax
			(
			0.001
			,
			 
			
			(
			0.9
			,
			 
			0.995
			)
			)
Methods