Nothing
keras_test_model <- function() {
tensorflow::set_random_seed(42)
nn <- keras::keras_model_sequential()
nn <- keras::layer_dense(nn, units = 2, activation = "tanh", input_shape = 2)
nn <- keras::layer_dense(nn, units = 3, activation = "softplus")
nn <- keras::layer_dense(nn, units = 2, activation = "linear")
nn
}
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.