【機器學習】搭建神經網路筆記
一、簡單寫一個迴歸方程
import tensorflow as tf
import numpy as np
#creat data
x_data = np.random.rand(100).astype(np.float32)#在x中生成隨機數,隨機數以np的float32型別展示
y_data= x_data * 0.1 + 0.3 #基本的函式
# create tensorflow structure start#
Weights= tf.Variable(tf.random_uniform([1] , -1.0 , 1.0))#初始化Weights(權重)的張量,均勻分佈
biases = tf.Variable(tf.zeros([1]))#初始化biases(偏移量)張量,一維的資料
y = Weights * x_data + biases #依據的Weight和biases兩個建立一個模型
lost = tf.reduce_mean(tf.square(y - y_data))#lost的數值為求得的是(y-y.data)^2的平均值
optimizer = tf.train.GradientDescentOptimizer(0.5)#梯度下降優化器,範圍為0.5
train = optimizer.minimize(lost)
init = tf.global_variables_initializer();
# create tensorflow structure end #
sess = tf.Session()#建立訪問
sess.run(init) #執行
for step in range(201):
sess.run(train)
if(step % 20) == 0:
print(step , sess.run(Weights), sess.run(biases))
二、tensorflow的會話機制:Session
#Session的兩種寫法
import tensorflow as tf
martix1 = tf.constant([[3 , 3]])
martix2 = tf.constant([[2],
[2]])
product = tf.matmul(martix1 , martix2)
# #method 1
# sess = tf.Session()#Session記得要大寫
# result = sess.run(product)
# print(result)
# sess.close()
#method 2
with tf.Session() as sess:
result2 = sess.run(product)
print(result2)
三、tensorflow的初始化機制:Variable
#Variable:建立變數
import tensorflow as tf
state = tf.Variable(0 , name = 'counter')
# print(state.name)
one = tf.constant(1)
new_value = tf.add(state , one)
update = tf.assign(state , new_value)#assign:轉讓編制;將new_value賦值給state,return state
#使用tf.global_variables_initializer()新增節點用於初始化所有的變數。
#在你構建完整個模型並在會話中載入模型後,執行這個節點。c231
init = tf.global_variables_initializer()#初始化模型
with tf.Session() as sess:
sess.run(init)
for _ in range(3):
sess.run(update)
print(sess.run(state))
四、placeholder
#placeholder:在執行的時候再去給我的值,而不是一開始就先賦值。
import tensorflow as tf
input1 = tf.placeholder(tf.float32)
input2 = tf.placeholder(tf.float32)
output = tf.multiply(input1 , input2)
with tf.Session() as sess:
print(sess.run(output , feed_dict = {input1:[7.] , input2:[2.]}))#將feed_dict的數值傳入output
五、搭建一個神經網路
#定義一個新增層
#建造神經網路
%matplotlib qt5
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
#新增激勵函式
def add_layer(inputs, in_size, out_size, activation_function = None):
with tf.name_scope('layer'):
Weights = tf.Variable(tf.random_normal([in_size , out_size]) , name = 'W')
with tf.name_scope('biases'):
biases = tf.Variable(tf.zeros([1 , out_size]) + 0.1 , name = 'b')#初始化讓所有的數值都是0.1
with tf.name_scope('Wx_plus_b'):
Wx_plus_b = tf.matmul(inputs , Weights) + biases #矩陣的乘法,表示式
if activation_function is None: #沒有激勵的話直接輸出
outputs = Wx_plus_b
else:
outputs = activation_function(Wx_plus_b) #有激勵的話就做激勵
return outputs
#定義資料形式
x_data = np.linspace(-1 , 1 , 300)[: , np.newaxis]#300行有300個例子
noise = np.random.normal(0 , 0.05 , x_data.shape)#形成一些噪點
y_data = np.square(x_data) - 0.5 + noise
with tf.name_scope('inputs'):
xs = tf.placeholder(tf.float32 , [None , 1] , name = 'x_input')#傳進來的數值
ys = tf.placeholder(tf.float32 , [None , 1] , name = 'y_input')#傳進來的數值 ?????
l1 = add_layer(xs , 1 , 10 , activation_function = tf.nn.relu)#隱藏層,10個因子
prediction = add_layer(l1 , 10 , 1 , activation_function = None)#輸出層
with tf.name_scope('loss'):
loss = tf.reduce_mean(tf.reduce_sum(tf.square(ys - prediction) , reduction_indices = [1]))#求誤差
with tf.name_scope('train'):
train_step = tf.train.GradientDescentOptimizer(0.1).minimize(loss)#梯度下降演算法,學習效率0.1
init = tf.global_variables_initializer()
sess = tf.Session()
writer = tf.summary.FileWriter("logs/" , sess.graph)
sess.run(init)
fig = plt.figure()
ax = fig.add_subplot(1 , 1 , 1)
ax.scatter(x_data , y_data)
plt.ion()
plt.show()
#plt.ioff()
for i in range(1000):
sess.run(train_step , feed_dict = {xs:x_data , ys:y_data})
if i % 50 == 0:
try:
ax.lines.remove(lines[0])
except Exception:
pass
#print(sess.run(loss , feed_dict = {xs:x_data , ys:y_data}))
prediction_value = sess.run(prediction , feed_dict = {xs : x_data})
lines = ax.plot(x_data , prediction_value , 'r-' , lw = 5)
plt.pause(0.1)
相關文章
- 【菜鳥筆記|機器學習】神經網路筆記機器學習神經網路
- 機器學習筆記(3): 神經網路初步機器學習筆記神經網路
- 吳恩達機器學習筆記 —— 9 神經網路學習吳恩達機器學習筆記神經網路
- 吳恩達機器學習筆記——八、神經網路吳恩達機器學習筆記神經網路
- 深度學習筆記8:利用Tensorflow搭建神經網路深度學習筆記神經網路
- 吳恩達機器學習課程 筆記5 神經網路吳恩達機器學習筆記神經網路
- 機器學習整理(神經網路)機器學習神經網路
- 卷積神經網路學習筆記——Siamese networks(孿生神經網路)卷積神經網路筆記
- 深度學習筆記------卷積神經網路深度學習筆記卷積神經網路
- 全連線神經網路學習筆記神經網路筆記
- 卷積神經網路學習筆記——SENet卷積神經網路筆記SENet
- 深度學習卷積神經網路筆記深度學習卷積神經網路筆記
- 【卷積神經網路學習】(4)機器學習卷積神經網路機器學習
- 幾種型別神經網路學習筆記型別神經網路筆記
- 機器學習:神經網路構建(上)機器學習神經網路
- 機器學習:神經網路構建(下)機器學習神經網路
- 機器學習之多類別神經網路:Softmax機器學習神經網路
- 吳恩達《神經網路與深度學習》課程筆記(4)– 淺層神經網路吳恩達神經網路深度學習筆記
- 吳恩達《神經網路與深度學習》課程筆記(5)– 深層神經網路吳恩達神經網路深度學習筆記
- 【機器學習基礎】神經網路/深度學習基礎機器學習神經網路深度學習
- 《手寫數字識別》神經網路 學習筆記神經網路筆記
- 機器學習導圖系列(5):機器學習模型及神經網路模型機器學習模型神經網路
- 深度學習之step by step搭建神經網路深度學習神經網路
- 吳恩達機器學習系列11:神經網路吳恩達機器學習神經網路
- 機器學習神經網路——Sklearn.neural_network概要機器學習神經網路
- 機器學習之訓練神經網路:最佳做法機器學習神經網路
- 神經網路進化能否改變機器學習?神經網路機器學習
- 【機器學習】之第五章——神經網路機器學習神經網路
- 我的作業筆記:吳恩達的Python機器學習課程(神經網路篇)筆記吳恩達Python機器學習神經網路
- 深度學習入門筆記(十八):卷積神經網路(一)深度學習筆記卷積神經網路
- 人工智慧、機器學習、深度學習、神經網路的關係人工智慧機器學習深度學習神經網路
- Python+Matlab+機器學習+深度神經網路全套學習資料!PythonMatlab機器學習神經網路
- 機器學習之多類別神經網路:一對多機器學習神經網路
- 吳恩達機器學習筆記 —— 10 神經網路引數的反向傳播演算法吳恩達機器學習筆記神經網路反向傳播演算法
- 如何通過 JavaScript 實現機器學習和神經學網路?JavaScript機器學習
- 機器學習之神經網路機器學習神經網路
- 圖神經網路七日打卡營學習筆記及心得神經網路筆記
- 機器學習和神經網路的簡要框架總結機器學習神經網路框架