tf.scan, tf.less , tf.assign , projector, tf.dtypes
## tensorflow InteractiveSession , get_shape, expand_dims, linspace import tensorflow as tf sess = tf.InteractiveSession() c = tf.linspace(0.0 ,4.0, 5) print(c.get_shape()) d = tf.expand_dims(c, 1) print(d.get_shape()) print(c.eval()) sess.close() tf.Graph , dtype with tf.Graph().as_default() : c1 = tf.constant(4, dtype=tf.float32 , name= "float") c2 = tf.constant(4, dtype=tf.float64 , name= "fl..
2020.01.05