簡單神經網絡

1. 三層簡單神經網絡 import tensorflow as tfimport tensorflow as tf 1.1 定義變量 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.const
相關文章
相關標籤/搜索