Instance_norm
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 tensorrunning_mean
: the running_mean tensorrunning_var
: the running var tensorweight
: the weight tensorbias
: the bias tensoruse_input_stats
: whether to use input statsmomentum
: a double for the momentumeps
: an eps double for numerical stabilityUseful links