LayerNormalization constructor

LayerNormalization(
  1. int features, {
  2. double epsilon = 1e-5,
})

Implementation

LayerNormalization(this.features, {this.epsilon = 1e-5})
    : gamma = Value(1.0), // Typically initialized to 1
      beta = Value(0.0), // Typically initialized to 0
      super();