tf.nn.relu6
Stay organized with collections
Save and categorize content based on your preferences.
Computes Rectified Linear 6: min(max(features, 0), 6)
.
tf.nn.relu6(
features, name=None
)
Args |
features
|
A Tensor with type float , double , int32 , int64 , uint8 ,
int16 , or int8 .
|
name
|
A name for the operation (optional).
|
Returns |
A Tensor with the same type as features .
|
References:
Convolutional Deep Belief Networks on CIFAR-10:
Krizhevsky et al., 2010
(pdf)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2021-08-16 UTC.
[null,null,["Last updated 2021-08-16 UTC."],[],[],null,["# tf.nn.relu6\n\n\u003cbr /\u003e\n\n|---------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------|\n| [TensorFlow 1 version](/versions/r1.15/api_docs/python/tf/nn/relu6) | [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.6.0/tensorflow/python/ops/nn_ops.py#L3567-L3587) |\n\nComputes Rectified Linear 6: `min(max(features, 0), 6)`.\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.nn.relu6`](https://www.tensorflow.org/api_docs/python/tf/nn/relu6)\n\n\u003cbr /\u003e\n\n tf.nn.relu6(\n features, name=None\n )\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|------------|----------------------------------------------------------------------------------------|\n| `features` | A `Tensor` with type `float`, `double`, `int32`, `int64`, `uint8`, `int16`, or `int8`. |\n| `name` | A name for the operation (optional). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A `Tensor` with the same type as `features`. ||\n\n\u003cbr /\u003e\n\n#### References:\n\nConvolutional Deep Belief Networks on CIFAR-10:\nKrizhevsky et al., 2010\n([pdf](http://www.cs.utoronto.ca/%7Ekriz/conv-cifar10-aug2010.pdf))"]]