2.8tf.maximum()、tf.minimum()和tf.clip_to_value()
原创
©著作权归作者所有:来自51CTO博客作者小怪兽会微笑的原创作品,请联系作者获取转载授权,否则将追究法律责任
用来对张量里的值进行限定
import tensorflow as tf
import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
a=tf.range(10)
print(tf.maximum(a,4))
# tf.Tensor([4 4 4 4 4 5 6 7 8 9], shape=(10,), dtype=int32)
print(tf.minimum(a,4))
# tf.Tensor([0 1 2 3 4 4 4 4 4 4], shape=(10,), dtype=int32)
print(tf.clip_by_value(a,4,6))
# tf.Tensor([4 4 4 4 4 5 6 6 6 6], shape=(10,), dtype=int32)