使用TensorFlow搭建一個(gè)全連接神經(jīng)網(wǎng)絡(luò)教程
說明
本例子利用TensorFlow搭建一個(gè)全連接神經(jīng)網(wǎng)絡(luò),實(shí)現(xiàn)對(duì)MNIST手寫數(shù)字的識(shí)別。
先上代碼
from tensorflow.examples.tutorials.mnist import input_data
import tensorflow as tf
# prepare data
mnist = input_data.read_data_sets('MNIST_data', one_hot=True)
xs = tf.placeholder(tf.float32, [None, 784])
ys = tf.placeholder(tf.float32, [None, 10])
# the model of the fully-connected network
weights = tf.Variable(tf.random_normal([784, 10]))
biases = tf.Variable(tf.zeros([1, 10]) + 0.1)
outputs = tf.matmul(xs, weights) + biases
predictions = tf.nn.softmax(outputs)
cross_entropy = tf.reduce_mean(-tf.reduce_sum(ys * tf.log(predictions),
reduction_indices=[1]))
train_step = tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)
# compute the accuracy
correct_predictions = tf.equal(tf.argmax(predictions, 1), tf.argmax(ys, 1))
accuracy = tf.reduce_mean(tf.cast(correct_predictions, tf.float32))
with tf.Session() as sess:
init = tf.global_variables_initializer()
sess.run(init)
for i in range(1000):
batch_xs, batch_ys = mnist.train.next_batch(100)
sess.run(train_step, feed_dict={
xs: batch_xs,
ys: batch_ys
})
if i % 50 == 0:
print(sess.run(accuracy, feed_dict={
xs: mnist.test.images,
ys: mnist.test.labels
}))
代碼解析
1. 讀取MNIST數(shù)據(jù)
mnist = input_data.read_data_sets('MNIST_data', one_hot=True)
2. 建立占位符
xs = tf.placeholder(tf.float32, [None, 784]) ys = tf.placeholder(tf.float32, [None, 10])
xs 代表圖片像素?cái)?shù)據(jù), 每張圖片(28×28)被展開成(1×784), 有多少圖片還未定, 所以shape為None×784.
ys 代表圖片標(biāo)簽數(shù)據(jù), 0-9十個(gè)數(shù)字被表示成One-hot形式, 即只有對(duì)應(yīng)bit為1, 其余為0.
3. 建立模型
weights = tf.Variable(tf.random_normal([784, 10]))
biases = tf.Variable(tf.zeros([1, 10]) + 0.1)
outputs = tf.matmul(xs, weights) + biases
predictions = tf.nn.softmax(outputs)
cross_entropy = tf.reduce_mean(-tf.reduce_sum(ys * tf.log(predictions),
reduction_indices=[1]))
train_step = tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)
使用Softmax函數(shù)作為激活函數(shù):

4. 計(jì)算正確率
correct_predictions = tf.equal(tf.argmax(predictions, 1), tf.argmax(ys, 1)) accuracy = tf.reduce_mean(tf.cast(correct_predictions, tf.float32))
5. 使用模型
with tf.Session() as sess:
init = tf.global_variables_initializer()
sess.run(init)
for i in range(1000):
batch_xs, batch_ys = mnist.train.next_batch(100)
sess.run(train_step, feed_dict={
xs: batch_xs,
ys: batch_ys
})
if i % 50 == 0:
print(sess.run(accuracy, feed_dict={
xs: mnist.test.images,
ys: mnist.test.labels
}))
運(yùn)行結(jié)果
訓(xùn)練1000個(gè)循環(huán), 準(zhǔn)確率在87%左右.
Extracting MNIST_data/train-images-idx3-ubyte.gz Extracting MNIST_data/train-labels-idx1-ubyte.gz Extracting MNIST_data/t10k-images-idx3-ubyte.gz Extracting MNIST_data/t10k-labels-idx1-ubyte.gz 0.1041 0.632 0.7357 0.7837 0.7971 0.8147 0.8283 0.8376 0.8423 0.8501 0.8501 0.8533 0.8567 0.8597 0.8552 0.8647 0.8654 0.8701 0.8712 0.8712
以上這篇使用TensorFlow搭建一個(gè)全連接神經(jīng)網(wǎng)絡(luò)教程就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
Python如何使用標(biāo)準(zhǔn)庫tmpfile庫創(chuàng)建臨時(shí)文件
這篇文章主要介紹了Python如何使用標(biāo)準(zhǔn)庫tmpfile庫創(chuàng)建臨時(shí)文件問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-02-02
Python分析微信好友性別比例和省份城市分布比例的方法示例【基于itchat模塊】
這篇文章主要介紹了Python分析微信好友性別比例和省份城市分布比例的方法,結(jié)合實(shí)例形式分析了Python基于itchat模塊獲取及計(jì)算微信好友相關(guān)信息操作技巧,需要的朋友可以參考下2020-05-05
淺談PyQt5中異步刷新UI和Python多線程總結(jié)
今天小編就為大家分享一篇淺談PyQt5中異步刷新UI和Python多線程總結(jié),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2019-12-12
Python數(shù)據(jù)庫編程之SQLite和MySQL的實(shí)踐指南
這篇文章主要為大家詳細(xì)介紹了Python數(shù)據(jù)庫編程中SQLite和MySQL的相關(guān)操作指南,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2024-03-03
python實(shí)現(xiàn)跨excel sheet復(fù)制代碼實(shí)例
這篇文章主要介紹了python實(shí)現(xiàn)跨excel sheet復(fù)制代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-03-03
Python?turtle.shape()用法及實(shí)戰(zhàn)案例
turtle是Python自帶的一個(gè)小型的繪圖庫,它可以幫助我們快速地繪制簡單的圖形,這篇文章主要給大家介紹了關(guān)于Python?turtle.shape()用法及實(shí)戰(zhàn)案例的相關(guān)資料,需要的朋友可以參考下2024-03-03
一文教會(huì)你使用win10實(shí)現(xiàn)電腦的定時(shí)任務(wù)執(zhí)行
這篇文章主要介紹了一文教會(huì)你使用win10實(shí)現(xiàn)電腦的定時(shí)任務(wù)執(zhí)行,利用Windows任務(wù)計(jì)劃程序創(chuàng)建定時(shí)執(zhí)行自定義腳本的步驟,包括配置環(huán)境、編寫腳本、新建任務(wù)文件夾、設(shè)置觸發(fā)器、編輯任務(wù)信息以及手動(dòng)運(yùn)行測試,需要的朋友可以參考下2024-09-09

