| optimizer_adam | R Documentation |
Creates an Adam optimizer object.
optimizer_adam(
learning_rate = 0.001,
beta1 = 0.9,
beta2 = 0.999,
epsilon = 1e-08,
epochs = 100,
batch_size = NULL
)
learning_rate |
Learning rate. |
beta1 |
Exponential decay rate for the first moment estimates. |
beta2 |
Exponential decay rate for the second moment estimates. |
epsilon |
Small positive constant for numerical stability. |
epochs |
Number of training epochs. |
batch_size |
Mini-batch size. If |
An object of class "met_optimizer".
Kingma, D. P., and Ba, J. (2015). Adam: A Method for Stochastic Optimization. International Conference on Learning Representations.
optimizer_adam()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.