ActivationFunctionFloat32x4 constructor

ActivationFunctionFloat32x4(
  1. String name,
  2. double initialWeightScale, {
  3. double initialWeightBiasValue = 0.0,
  4. double flatSpot = 0.0001,
})

Implementation

ActivationFunctionFloat32x4(String name, double initialWeightScale,
    {double initialWeightBiasValue = 0.0, double flatSpot = 0.0001})
    : entryFlatSpot = Float32x4(flatSpot, flatSpot, flatSpot, flatSpot),
      super(name, initialWeightScale,
          initialWeightBiasValue: initialWeightBiasValue, flatSpot: flatSpot);