Function tensorflow::ops::fused_batch_norm
source · pub fn fused_batch_norm<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
x: O0,
scale: O1,
offset: O2,
mean: O3,
variance: O4,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for FusedBatchNorm::new().build(x, scale, offset, mean, variance, scope)
.