2.1预备知识 # 条件判断tf.where(条件语句,真返回A,假返回B) import tensorflow as tf a = tf.constant([1,2,3,1,1]) b = tf.constant([0,1,2,4,5]) c = tf.where(tf.greater(a,b),a,b) # 返回张量中比较大的元素 print(c) tf.Tensor([1 2 3 4 5], shape=(5,), dtype=int32) # 返回[0,1)之间的随机数 import n…