TensorFlow函数教程:tf.keras.backend.relu
2019-03-21 17:42 更新
tf.keras.backend.relu函数
tf.keras.backend.relu(
x,
alpha=0.0,
max_value=None,
threshold=0
)
定义在:tensorflow/python/keras/backend.py。
整流线性单元。
使用默认值,它以元素方式返回max(x, 0)。
它遵循:
- 对于x >= max_value,f(x) = max_valuefor
- 对于threshold <= x < max_value,f(x) = x
- 否则为f(x) = alpha * (x - threshold)
参数:
- x:张量或变量。
- alpha:标量,负数部分的斜率(默认= 0)。
- max_value:float,饱和度阈值。
- threshold:float,阈值激活的阈值。
返回:
返回张量。