View source: R/nnf-instancenorm.R
nnf_instance_norm | R Documentation |
Applies Instance Normalization for each channel in each data sample in a batch.
nnf_instance_norm(
input,
running_mean = NULL,
running_var = NULL,
weight = NULL,
bias = NULL,
use_input_stats = TRUE,
momentum = 0.1,
eps = 1e-05
)
input |
the input tensor |
running_mean |
the running_mean tensor |
running_var |
the running var tensor |
weight |
the weight tensor |
bias |
the bias tensor |
use_input_stats |
whether to use input stats |
momentum |
a double for the momentum |
eps |
an eps double for numerical stability |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.