摘要:
import tensorflow as tf w1= tf.Variable(tf.random_normal([2, 3], stddev=1, seed=1)) w2= tf.Variable(tf.random_normal([3, 1], stddev=1, seed=1)) x = tf.constant([[0.7, 0.9]]) a = tf.matmul(x, w1) ... 阅读全文
posted @ 2019-05-15 21:57
吴裕雄
阅读(639)
评论(0)
推荐(0)
2019年5月15日