tf.nn.relu6
| Просмотреть исходный код на GitHub |
Вычисляет Rectified Linear 6: min(max(features, 0), 6).
tf.nn.relu6(
features, name=None
)
Источник: Свёрточные глубокие нейронные сети на CIFAR-10. А. Крижевский
| Аргументы | |
|---|---|
features | Объект Tensor типа float, double, int32, int64, uint8, int16, или int8. |
name | Имя операции (необязательно). |
| Возвращает | |
|---|---|
Объект Tensor того же типа, что и features. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/nn/relu6