Python神經網絡TensorFlow(一)

此文章代碼為Tensorflow官方文檔入門模型,python版本為2.7。詳見鏈接:http://wiki.jikexueyuan.com/project/tensorflow-zh/tutorials/mnist_beginners.html
<code>import tensorflow as tf
import input_data </code>

x = tf.placeholder("float", [None, 784])
y_ = tf.placeholder("float", [None, 10])
W = tf.Variable(tf.zeros([784,10]))
b = tf.Variable(tf.zeros([10]))
y = tf.nn.softmax(tf.matmul(x,W) + b)#神經網絡模型實現```

```cross_entropy = -tf.reduce_sum(y_*tf.log(y))#交叉熵
train_step = tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy)```

```init = tf.initialize_all_variables()#初始化變量
sess = tf.Session()
sess.run(init)```

```for i in range(1000):    #訓練模型1000次
    batch_xs,batch_ys = mnist.train.next_batch(100)   
    sess.run(train_step,feed_dict={x:batch_xs,y_:batch_ys})
correct_prediction = tf.equal(tf.argmax(y,1),tf.argmax(y_,1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction,"float"))
print sess.run(accuracy,feed_dict={x:mnist.test.images,y_:mnist.test.labels})#輸出測試數據集正確率```
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容