Nothing
.alias_roxygen <- function(backcompat_name, name) {
strsplit(glue::glue("
{name}
`{backcompat_name}()` is an alias for [`{name}()`].
See `?`[`{name}()`] for the full documentation.
@inheritParams {name}
@inherit {name} return
@keywords internal
@export
"), "\n", fixed = TRUE)[[1L]]
}
#' @eval .alias_roxygen("new_callback_class", "Callback")
new_callback_class <- Callback
#' @eval .alias_roxygen("new_layer_class", "Layer")
new_layer_class <- Layer
#' @eval .alias_roxygen("new_loss_class", "Loss")
new_loss_class <- Loss
#' @eval .alias_roxygen("new_metric_class", "Metric")
new_metric_class <- Metric
#' @eval .alias_roxygen("new_model_class", "Model")
new_model_class <- Model
#' @eval .alias_roxygen("new_learning_rate_schedule_class", "LearningRateSchedule")
new_learning_rate_schedule_class <- LearningRateSchedule
#' @eval .alias_roxygen("mark_active", "active_property")
mark_active <- active_property
#' @eval .alias_roxygen("layer_input", "keras_input")
layer_input <- keras_input
#' @eval .alias_roxygen("bidirectional", "layer_bidirectional")
bidirectional <- layer_bidirectional
#' @eval .alias_roxygen("time_distributed", "layer_time_distributed")
time_distributed <- layer_time_distributed
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.