Incubator-mxnet: Selu Operator not present in MXNet

Created on 29 Jun 2018  路  8Comments  路  Source: apache/incubator-mxnet

Operator definition
y = gamma * (alpha * e^x - alpha) for x <= 0,
y = gamma * x for x > 0

@nswamy please label this - "Operator", "Feature Request"

Feature request Operator

Most helpful comment

The fix for this issue is in #12059

All 8 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 where). I might port that into a Clojure example :)

The fix for this issue is in #12059

Was this page helpful?
0 / 5 - 0 ratings