Tensorflow中placeholder用法

#关于placeholder import tensorflow as tf #这样就定义了一个tf.float32这种类型的一个placeholder input1 = tf.placeholder(tf.float32) input2 = tf.placeholder(tf.float32) #定义一个乘法运算 output = tf.multiply(input1,input2) wit
相关文章
相关标签/搜索