Description Usage Arguments Details Value Examples
LiSHT: Non-Parameteric Linearly Scaled Hyperbolic Tangent Activation Function.
1 |
x |
A 'Tensor'. Must be one of the following types: 'float16', 'float32', 'float64'. |
Computes linearly scaled hyperbolic tangent (LiSHT): 'x * tanh(x)' See [LiSHT: Non-Parameteric Linearly Scaled Hyperbolic Tangent Activation Function for Neural Networks](https://arxiv.org/abs/1901.05894).
A 'Tensor'. Has the same type as 'x'.
1 2 3 4 5 6 7 8 | ## Not run:
library(keras)
library(tfaddons)
model = keras_model_sequential() %>%
layer_conv_2d(filters = 10, kernel_size = c(3,3),input_shape = c(28,28,1),
activation = activation_lisht)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.