nn_model | R Documentation |
This function defines a generative neural network model for a certain architecture and adds noise to the input layer.
nn_model(in_dim, noise_dim, hidden_dim = 100, out_dim, num_layer = 3)
in_dim |
Integer. Input dimension. |
noise_dim |
Integer. Dimension of the noise to inject. |
Integer. Number of neurons in the hidden layers (default: 100). | |
out_dim |
Integer. Output dimension. |
num_layer |
Integer. Number of layers in the model (default: 3). |
A generative neural network model with intermediate noise injection.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.