機器學習演算法(2)用Python實現自適應線性神經元(隨機梯度下降+線上學習)
機器學習演算法(2)用Python實現自適應線性神經元(隨機梯度下降+線上學習)
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib.colors import ListedColormap
df = pd.read_csv('你自己的目錄\\iris.data',
header=None)
print(df.head())
# select setosa and versicolor
y = df.iloc[0:100, 4].values
y = np.where(y == 'Iris-setosa', -1, 1)
# extract sepal length and petal length
X = df.iloc[0:100, [0, 2]].values.astype(np.float32)
X_std = np.copy(X)
X_std[:, 0] = (X[:, 0] - X[:, 0].mean()) / X[:, 0].std()
X_std[:, 1] = (X[:, 1] - X[:, 1].mean()) / X[:, 1].std()
# 用plot_decision_regions把訓練結果用圖形表示出來
def plot_decision_regions(X, y, classifier, resolution=0.02):
# setup marker generator and color map
markers = ('s', 'x', 'o', '^', 'v')
colors = ('red', 'blue', 'lightgreen', 'gray', 'cyan')
cmap = ListedColormap(colors[:len(np.unique(y))])
# plot the decision surface
x1_min, x1_max = X[:, 0].min() - 1, X[:, 0].max() + 1
x2_min, x2_max = X[:, 1].min() - 1, X[:, 1].max() + 1
xx1, xx2 = np.meshgrid(np.arange(x1_min, x1_max, resolution),
np.arange(x2_min, x2_max, resolution))
Z = classifier.predict(np.array([xx1.ravel(), xx2.ravel()]).T)
Z = Z.reshape(xx1.shape)
plt.contourf(xx1, xx2, Z, alpha=0.3, cmap=cmap)
plt.xlim(xx1.min(), xx1.max())
plt.ylim(xx2.min(), xx2.max())
# plot class samples
for idx, cl in enumerate(np.unique(y)):
plt.scatter(x=X[y == cl, 0],
y=X[y == cl, 1],
alpha=0.8,
c=colors[idx],
marker=markers[idx],
label=cl,
edgecolor='black')
class AdalineSGD(object):
"""ADAptive LInear NEuron classifier.
Parameters
------------
eta : float
Learning rate (between 0.0 and 1.0)
n_iter : int
Passes over the training dataset.
shuffle : bool (default: True)
Shuffles training data every epoch if True to prevent cycles.
random_state : int
Random number generator seed for random weight
initialization.
Attributes
-----------
w_ : 1d-array
Weights after fitting.
cost_ : list
Sum-of-squares cost function value averaged over all
training samples in each epoch.
"""
def __init__(self, eta=0.01, n_iter=10, shuffle=True, random_state=None):
self.eta = eta
self.n_iter = n_iter
self.w_initialized = False
self.shuffle = shuffle
self.random_state = random_state
def fit(self, X, y):
""" Fit training data.
Parameters
----------
X : {array-like}, shape = [n_samples, n_features]
Training vectors, where n_samples is the number of samples and
n_features is the number of features.
y : array-like, shape = [n_samples]
Target values.
Returns
-------
self : object
"""
self._initialize_weights(X.shape[1])
self.cost_ = []
for i in range(self.n_iter):
# 在每次迭代開始之前,對訓練資料重新洗牌以避免優化代價函式時重複迴圈
if self.shuffle:
X, y = self._shuffle(X, y)
cost = []
for xi, target in zip(X, y):
cost.append(self._update_weights(xi, target))
# 為了檢驗演算法在訓練後是否收斂, 將在每次迭代計算訓練樣本的平均代價。
avg_cost = sum(cost) / len(y)
self.cost_.append(avg_cost)
return self
def partial_fit(self, X, y):
"""Fit training data without reinitializing the weights"""
if not self.w_initialized:
self._initialize_weights(X.shape[1])
if y.ravel().shape[0] > 1:
for xi, target in zip(X, y):
self._update_weights(xi, target)
else:
self._update_weights(X, y)
return self
def _shuffle(self, X, y):
"""Shuffle training data"""
# np.random中permutation函式產生範圍從0到100的獨立數字的隨機序列。
# 然後 以這些數字作為索引來對特徵矩陣和分類標籤向量洗牌。
r = self.rgen.permutation(len(y))
return X[r], y[r]
def _initialize_weights(self, m):
"""Initialize weights to small random numbers"""
self.rgen = np.random.RandomState(self.random_state)
self.w_ = self.rgen.normal(loc=0.0, scale=0.01, size=1 + m)
self.w_initialized = True
# 在每個訓練樣本之後更新權重
def _update_weights(self, xi, target):
"""Apply Adaline learning rule to update the weights"""
output = self.activation(self.net_input(xi))
error = (target - output)
self.w_[1:] += self.eta * xi.dot(error)
self.w_[0] += self.eta * error
cost = 0.5 * error**2
return cost
def net_input(self, X):
"""Calculate net input"""
return np.dot(X, self.w_[1:]) + self.w_[0]
def activation(self, X):
"""Compute linear activation"""
return X
def predict(self, X):
"""Return class label after unit step"""
return np.where(self.activation(self.net_input(X)) >= 0.0, 1, -1)
ada = AdalineSGD(n_iter=15, eta=0.01, random_state=1)
ada.fit(X_std, y)
plot_decision_regions(X_std, y, classifier=ada)
plt.title('Adaline - Stochastic Gradient Descent')
plt.xlabel('sepal length [standardized]')
plt.ylabel('petal length [standardized]')
plt.legend(loc='upper left')
plt.tight_layout()
# plt.savefig('images/02_15_1.png', dpi=300)
plt.show()
plt.plot(range(1, len(ada.cost_) + 1), ada.cost_, marker='o')
plt.xlabel('Epochs')
plt.ylabel('Average Cost')
plt.tight_layout()
# plt.savefig('images/02_15_2.png', dpi=300)
plt.show()
# 如果要更新模型,例如,流式資料的線上學習,可以對單個樣本直接呼叫partial_fit方法
ada.partial_fit(X_std[0, :], y[0])
執行結果:
0 1 2 3 4
0 5.1 3.5 1.4 0.2 Iris-setosa
1 4.9 3.0 1.4 0.2 Iris-setosa
2 4.7 3.2 1.3 0.2 Iris-setosa
3 4.6 3.1 1.5 0.2 Iris-setosa
4 5.0 3.6 1.4 0.2 Iris-setosa
備註:程式碼為《python機器學習》(原書第2版)機械工業出版社,書籍中示例程式碼,學習過程中整理,現分享出來,供大家學習參考,另外方便可以隨時拿出來看。
相關文章
- 機器學習--線性迴歸--梯度下降的實現機器學習梯度
- 機器學習之隨機梯度下降法機器學習隨機梯度
- [action] deep learning 深度學習 tensorflow 實戰(2) 實現簡單神經網路以及隨機梯度下降演算法S.G.D深度學習神經網路隨機梯度演算法
- 機器學習中梯度下降演算法的實際應用和技巧機器學習梯度演算法
- 機器學習——梯度下降演算法機器學習梯度演算法
- 梯度下降法實現最簡單線性迴歸問題python實現梯度Python
- 【機器學習】梯度下降機器學習梯度
- 隨機梯度下降法的數學基礎隨機梯度
- 實現梯度下降梯度
- 李沐:用隨機梯度下降來最佳化人生!隨機梯度
- 機器學習之梯度下降機器學習梯度
- 【機器學習】梯度下降 II機器學習梯度
- 機器學習筆記(1): 梯度下降演算法機器學習筆記梯度演算法
- 機器學習演算法(6)用Python實現用核支援向量機求解非線性問題機器學習演算法Python
- 數學推導+Python實現機器學習演算法:線性迴歸Python機器學習演算法
- 機器學習之梯度下降法機器學習梯度
- 【機器學習基礎】——梯度下降機器學習梯度
- 對梯度下降演算法的理解和實現梯度演算法
- 大白話5分鐘帶你走進人工智慧-第十一節梯度下降之手動實現梯度下降和隨機梯度下降的程式碼(6)人工智慧梯度隨機
- 【機器學習】線性迴歸python實現機器學習Python
- 機器學習(二):理解線性迴歸與梯度下降並做簡單預測機器學習梯度
- 有監督學習——梯度下降梯度
- TensorFlow.NET機器學習入門【3】採用神經網路實現非線性迴歸機器學習神經網路
- 機器學習方法(一)——梯度下降法機器學習梯度
- 使用JavaScript實現機器學習和神經學網路JavaScript機器學習
- 機器學習中的數學(1):迴歸、梯度下降機器學習梯度
- 梯度下降演算法梯度演算法
- 詳解神經網路中反向傳播和梯度下降神經網路反向傳播梯度
- 深度學習-Tensorflow2.2-梯度下降演算法概述-03深度學習梯度演算法
- Stanford機器學習課程筆記——單變數線性迴歸和梯度下降法機器學習筆記變數梯度
- 自適應模糊神經網路的設計神經網路
- 機器學習之線性迴歸(純python實現)機器學習Python
- 如何通過 JavaScript 實現機器學習和神經學網路?JavaScript機器學習
- 【卷積神經網路學習】(4)機器學習卷積神經網路機器學習
- ML-梯度下降程式碼-線性迴歸為例梯度
- 機器學習演算法(5):卷積神經網路原理及其keras實現機器學習演算法卷積神經網路Keras
- 深入淺出--梯度下降法及其實現梯度
- Python+Matlab+機器學習+深度神經網路全套學習資料!PythonMatlab機器學習神經網路