優化算法:小批量隨機梯度降低javascript
每次隨機選擇小樣本,求小批量數據樣本的平均損失函數的導數,修改模型參數。css
矢量計算:html
那麼預測表達式爲 y^ = XW + bhtml5
%matplotlib inline
from IPython import display
from matplotlib import pyplot as plt
from mxnet import autograd,nd
import random
num_inputs = 2
num_examples = 1000
true_w = [2,-3.4]
true_b = 4.2
features = nd.random.normal(scale=1,shape=(num_examples,num_inputs))
labels = true_w[0]*features[:,0] + true_w[1]*features[:,1] + true_b
labels += nd.random.normal(scale=0.01,shape=labels.shape)
features[0],labels[0]
def use_svg_display():
display.set_matplotlib_format('svg')
def set_figsize(figsize=(3.5,2.5)):
use_svg_display()
plt.rcParams['figure.figsize'] = figsize
set_figsize
plt.scatter(features[:,1].asnumpy(),labels.asnumpy(),1)
讀取數據java
def data_iter(batch_size, features, labels):
num_examples = len(features)
indices = list(range(num_examples))
random.shuffle(indices)
for i in range(0, num_examples, batch_size):
j = nd.array(indices[i: min(i + batch_size, num_examples)])
yield features.take(j), labels.take(j)
batch_size = 10
for X,y in data_iter(batch_size,features,labels):
print(X,y)
break
w = nd.random.normal(scale=0.01,shape=(num_inputs,1))
b = nd.zeros(shape=(1,))
w,b
w,b是迭代對象,建立他們的梯度python
w.attach_grad()
b.attach_grad()
計算函數jquery
def linreg(X, w, b): # 本函數已保存在 gluonbook 包中方便之後使用。
return nd.dot(X, w) + b
損失函數linux
def squared_loss(y_hat, y): # 本函數已保存在 gluonbook 包中方便之後使用。
return (y_hat - y.reshape(y_hat.shape)) ** 2 / 2
定義優化算法android
def sgd(params, lr, batch_size): # 本函數已保存在 gluonbook 包中方便之後使用。
for param in params:
param[:] = param - lr * param.grad / batch_size
lr = 0.03
num_epochs = 3
net = linreg
loss = squared_loss
for epoch in range(num_epochs): # 訓練模型一共須要 num_epochs 個迭代週期。
# 在一個迭代週期中,使用訓練數據集中全部樣本一次(假設樣本數可以被批量大小整除)。
# X 和 y 分別是小批量樣本的特徵和標籤。
for X, y in data_iter(batch_size, features, labels):
with autograd.record():
l = loss(net(X, w, b), y) # l 是有關小批量 X 和 y 的損失。
l.backward() # 小批量的損失對模型參數求梯度。
sgd([w, b], lr, batch_size) # 使用小批量隨機梯度降低迭代模型參數。
train_l = loss(net(features, w, b), labels)
print('epoch %d, loss %f' % (epoch + 1, train_l.mean().asnumpy()))
true_w,w
true_b,b