View source: R/generalized-nn-fit.R
| train_nn_impl | R Documentation |
Shared core implementation
train_nn_impl(
x,
y,
hidden_neurons,
activations = NULL,
output_activation = NULL,
bias = TRUE,
arch = NULL,
early_stopping = NULL,
epochs = 100,
batch_size = 32,
penalty = 0,
mixture = 0,
learn_rate = 0.001,
optimizer = "adam",
optimizer_args = list(),
loss = "mse",
validation_split = 0,
device = NULL,
verbose = FALSE,
cache_weights = FALSE,
fit_class = "nn_fit"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.