-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Selu Operator not present in MXNet #11496
Comments
Hi @anirudhacharya, thanks for submitting issue. @sandeep-krishnamurthy requesting this be labeled. |
Thanks - It will be great to have selu available to the other language bindings too 👍 |
@gigasquid it is easy to implement selu in Scala:https://github.com/Ldpe2G/DeepLearningForFun/blob/master/Mxnet-Scala/SelfNormNets/src/main/scala/snns/Ops.scala |
@Ldpe2G thanks for the reference. really nice 💯 |
@Ldpe2G @gigasquid I am wondering if this should be implemented on the backend so all languages can benefit. |
@nswamy Yes, I still think it would be beneficial to have it implemented in the backend. It would be best if users did not have to implement it themselves and could have it as a standard activation. I also appreciate the example from @Ldpe2G which is a nice reference for implementing operators, (especially using the |
The fix for this issue is in #12059 |
Operator definition
y = gamma * (alpha * e^x - alpha) for x <= 0,
y = gamma * x for x > 0
@nswamy please label this - "Operator", "Feature Request"
The text was updated successfully, but these errors were encountered: