ELUOperator

public class ELUOperator: ActivationOperator

Exponential Linear Units.

y = x if x > 0, else y = alpha*(exp(x) - 1)

Reference

Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs)

  • hyperparameter, default is 1.0

    Declaration

    Swift

    public var alpha:Float = 1.0