tf.saturate_cast(value, dtype, name=None)
See the guide: Tensor Transformations > Casting
Performs a safe saturating cast of value
to dtype
.
This function casts the input to dtype
without applying any scaling. If there is a danger that values would over or underflow in the cast, this op applies the appropriate clamping before the cast.
value
: A Tensor
.dtype
: The desired output DType
.name
: A name for the operation (optional).value
safely cast to dtype
.
Defined in tensorflow/python/ops/math_ops.py
.
© 2017 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/api_docs/python/tf/saturate_cast