You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/10/11 03:29:07 UTC

[GitHub] nswamy commented on a change in pull request #12748: [MXNET-1028] Adding CELU Activation function

nswamy commented on a change in pull request #12748: [MXNET-1028] Adding CELU Activation function
URL: https://github.com/apache/incubator-mxnet/pull/12748#discussion_r224304750
 
 

 ##########
 File path: python/mxnet/gluon/nn/activations.py
 ##########
 @@ -181,6 +181,25 @@ def hybrid_forward(self, F, x):
         return F.LeakyReLU(x, act_type='selu', name='fwd')
 
 
+class CELU(HybridBlock):
+    r"""
+    Continuous Exponential Linear Unit (CELU)
+        https://arxiv.org/abs/1704.07483
 
 Review comment:
   might help to add documentation on what it is than just linking a paper
   see the existing doc here for [LeakyReLU](http://mxnet.incubator.apache.org/api/python/ndarray/ndarray.html#mxnet.ndarray.LeakyReLU)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services