Hard SiLU activation function, also known as Hard Swish.
tf.keras.activations.hard_silu(
x
)
0 if if x < -3
x if x > 3
x * (x + 3) / 6 if -3 <= x <= 3
It's a faster, piecewise linear approximation of the silu activation.
| Args | |
|---|---|
x | Input tensor. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/activations/hard_silu