Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
Config provides configuration settings for an RMSProp optimizer.
func NewDefaultConfig ¶
func NewDefaultConfig() Config
NewDefaultConfig returns a new Config with generically reasonable default values.
type RMSProp ¶
type RMSProp struct {
Config
}
The RMSProp method is a variant of AdaGrad where the squared sum of previous gradients is replaced with a moving average. References:
RMSProp: Divide the gradient by a running average of its recent magnitude http://www.cs.toronto.edu/~tijmen/csc321/slides/lecture_slides_lec6.pdf
func (*RMSProp) Delta ¶
Delta returns the difference between the current params and where the method wants it to be.
Click to show internal directories.
Click to hide internal directories.