TensorFlow學習筆記(二十) tensorflow實現簡單三層網絡

代碼: 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)
相關文章
相關標籤/搜索