Class BatchNormWithGlobalNormalizationGrad.Inputs<T extends TType>

java.lang.Object
org.tensorflow.op.RawOpInputs<BatchNormWithGlobalNormalizationGrad<T>>
org.tensorflow.op.nn.BatchNormWithGlobalNormalizationGrad.Inputs<T>
Enclosing class:
BatchNormWithGlobalNormalizationGrad<T extends TType>

public static class BatchNormWithGlobalNormalizationGrad.Inputs<T extends TType> extends RawOpInputs<BatchNormWithGlobalNormalizationGrad<T>>
  • Field Details

    • t

      public final Operand<T extends TType> t
      A 4D input Tensor.
    • m

      public final Operand<T extends TType> m
      A 1D mean Tensor with size matching the last dimension of t. This is the first output from tf.nn.moments, or a saved moving average thereof.
    • v

      public final Operand<T extends TType> v
      A 1D variance Tensor with size matching the last dimension of t. This is the second output from tf.nn.moments, or a saved moving average thereof.
    • gamma

      public final Operand<T extends TType> gamma
      A 1D gamma Tensor with size matching the last dimension of t. If "scale_after_normalization" is true, this Tensor will be multiplied with the normalized Tensor.
    • backprop

      public final Operand<T extends TType> backprop
      4D backprop Tensor.
    • T

      public final DataType T
      The T attribute
    • varianceEpsilon

      public final float varianceEpsilon
      A small float number to avoid dividing by 0.
    • scaleAfterNormalization

      public final boolean scaleAfterNormalization
      A bool indicating whether the resulted tensor needs to be multiplied with gamma.
  • Constructor Details