ELU¶
- class dragon.vm.tensorflow.keras.layers.ELU(
 alpha=1.0,
 **kwargs
 )[source]¶
- Layer to apply the exponential linear unit. [Clevert et.al, 2015]. - The ELU function is defined as: \[\text{ELU}(x) = \begin{cases} x, & \text{ if } x \geq 0 \\ \alpha * (\exp(x) - 1), & \text{ otherwise } \end{cases} \]- Examples: - x = tf.constant([-1, 0, 1], 'float32') print(tf.keras.layers.ELU(inplace=False)(x)) 
