1. NN模型如下
神經網絡整體架構內容可參考之前的云筆記《06_神經網絡整體架構》
http://note.youdao.com/noteshare?id=2c27bbf6625d75e4173d9fcbeea5e8c1&sub=7F4BC70112524F9289531EC6AE435E14
其中,
n是指的樣本數
Mnist數據集 784是28×28×1 灰度圖 channel = 1
wb是指的權重參數
輸出的是10分類的得分值,也可以接softmax分類器
out是L2層和輸出層之間的關系
256 128 10是指的神經元數量
2. 構造參數
函數構造
3. Code
1. 網絡模型架構搭建
導入相應數據
import numpy as npimport tensorflow as tfimport matplotlib.pyplot as pltimport input_datamnist = input_data.read_data_sets('data/', one_hot=True)network topologies
# 網絡拓撲 network topologies# layer中神經元數量n_hidden_1 =256n_hidden_2 =128# 輸入數據的像素點 28x28x1n_input =784# 10分類n_classes =10input and output
x = tf.placeholder("float",[None,n_input])y = tf.placeholder("float",[None,n_classes])network parameters
# network parameters# 方差stddev =0.1# random_normal 高斯初始化weights ={'w1': tf.Variable(tf.random_normal([n_input,n_hidden_1],stddev=stddev)),'w2': tf.Variable(tf.random_normal([n_hidden_1,n_hidden_2],stddev=stddev)),'out': tf.Variable(tf.random_normal([n_hidden_2,n_classes],stddev=stddev))}# 對于 b 零值初始化也可以biases ={'b1': tf.Variable(tf.random_normal([n_hidden_1])),'b2': tf.Variable(tf.random_normal([n_hidden_2])),'out': tf.Variable(tf.random_normal([n_classes]))}print("Network Ready")output
NetworkReady可以看到網絡模型架構搭建成功
2.訓練網絡模型
定義前向傳播函數
# 定義前向傳播函數def multilayer_perceptron(_X, _weights, _biases):# 之所以加 sigmoid 是因為每一個 hidden layer 都有一個非線性函數layer_1 = tf.nn.sigmoid(tf.add(tf.matmul(_X, _weights['w1']), _biases['b1']))layer_2 = tf.nn.sigmoid(tf.add(tf.matmul(layer_1, _weights['w2']), _biases['b2']))return(tf.matmul(layer_2, _weights['out'])+ _biases['out'])反向傳播
(1)將前向傳播預測值
# predictionpred = multilayer_perceptron(x, weights, biases)(2)定義損失函數
# 首先定義損失函數 softmax_cross_entropy_with_logits 交叉熵函數# 交叉熵函數的輸入有 pred : 網絡的預測值 (前向傳播的結果)# y : 實際的label值# 將兩參數的一系列的比較結果,除以 batch 求平均之后的 loss 返回給 cost 損失值cost = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(pred, y))(3)梯度下降最優化
optm = tf.train.GradientDescentOptimizer(learning_rate =0.001).minimize(cost)(4)精確值
具體解釋詳見上一篇筆記《06_迭代完成邏輯回歸模型》
corr = tf.equal(tf.argmax(pred,1), tf.argmax(y,1))accr = tf.reduce_mean(tf.cast(corr,"float"))(5)初始化
# initializerinit = tf.global_variables_initializer()print("Function ready")output
Function ready可以看出傳播中的參數和優化模型搭建成功
3. Train and Test
training_epochs =20# 每次 iteration 的樣本batch_size =100# 每四個 epoch 打印一次結果display_step =4# lanch the graphsess = tf.Session()sess.run(init)# optimizefor epoch in range(training_epochs):# 初始,平均 loss = 0avg_cost =0total_batch =int(mnist.train.num_examples/batch_size)# iterationfor i in range(total_batch):# 通過 next_batch 返回相應的 batch_xs,batch_ysbatch_xs, batch_ys = mnist.train.next_batch(batch_size)feeds ={x: batch_xs, y: batch_ys}sess.run(optm, feed_dict = feeds)avg_cost += sess.run(cost, feed_dict = feeds)avg_cost = avg_cost / total_batch# displayif(epoch+1)% display_step ==0:print("Epoch: %03d/%03d cost: %.9f "%(epoch, training_epochs, avg_cost))feeds ={x: batch_xs, y: batch_ys}train_acc = sess.run(accr, feed_dict = feeds)print("train accuracy: %.3f"%(train_acc))feeds ={x: mnist.test.images, y: mnist.test.labels}test_acc = sess.run(accr, feed_dict = feeds)print("test accuracy: %.3f"%(test_acc))print("optimization finished")output
Epoch:003/020 cost:2.273774184train accuracy:0.250test accuracy:0.197Epoch:007/020 cost:2.240329206train accuracy:0.270test accuracy:0.311Epoch:011/020 cost:2.203503076train accuracy:0.370test accuracy:0.404Epoch:015/020 cost:2.161286944train accuracy:0.490test accuracy:0.492Epoch:019/020 cost:2.111541148train accuracy:0.410test accuracy:0.534optimization finished20個batch每個batch 100個樣本,每隔4個batch打印一次
處理器:Intel Core i5-6200U CPU @ 2.30GHz 2.04GHz
04 epoch:train+test, cost_time: 25’40”
08 epoch:train+test, cost_time: 50’29”
12 epoch:train+test, cost_time: 74’42”
16 epoch:train+test, cost_time: 98’63”
20 epoch:train+test, cost_time: 121’49”
-
函數
+關注
關注
3文章
4379瀏覽量
64833 -
神經元
+關注
關注
1文章
368瀏覽量
18833
發布評論請先 登錄
BP神經網絡與卷積神經網絡的比較
BP神經網絡的優缺點分析
什么是BP神經網絡的反向傳播算法
BP神經網絡與深度學習的關系
深度學習入門:簡單神經網絡的構建與實現
人工神經網絡的原理和多種神經網絡架構方法

卷積神經網絡與傳統神經網絡的比較
RNN模型與傳統神經網絡的區別
如何使用Python構建LSTM神經網絡模型
LSTM神經網絡的結構與工作機制
Moku人工神經網絡101

評論