iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 6
1
AI & Data

資資不倦系列 第 6

Day5 隨機森林

  • 分享至 

  • xImage
  •  

隨機森林
大綱:在機器學習中,隨機森林是一個包含多個決策樹的分類器,並且其輸出的類別是由個別樹輸出的類別的眾數而定。
https://ithelp.ithome.com.tw/upload/images/20200915/20129894U5LOBxw4DW.png

{從數據庫中導入所需工具}

import numpy as np (解析資料)
import matplotlib.pyplot as plt (圖表呈現)
import pandas as pd (計算工具)

{設置工作路徑}
<右側的files,連結到檔案所屬的路徑>

{導入所需數據}

dataset = pd.read_csv('Social_Network_Ads.csv')
X = dataset.iloc[:, [2,3]].values
y = dataset.iloc[:, 4].values

https://ithelp.ithome.com.tw/upload/images/20200915/20129894zDxedxUm7p.png

{將資料分成訓練集以及測試集}

from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, random_state = 0)

{特徵縮放}
<當資料需要找出關聯,但數據差過大時,利用特徵縮放讓數據呈現在同水平>

from sklearn.preprocessing import StandardScaler
sc_X = StandardScaler()
X_train = sc_X.fit_transform(X_train)
X_test = sc_X.transform(X_test)

*y不用特徵縮放, 因為它只有0跟1
https://ithelp.ithome.com.tw/upload/images/20200915/20129894A3tpMk00W3.png

{利用訓練集讓機器開始學習}

from sklearn.ensemble import RandomForestClassifier
classifier = RandomForestClassifier(n_estimators = 10, criterion = 'entropy', random_state = 0)
classifier.fit(X_train, y_train)

{利用擬和器開始預測}
y_pred = classifier.predict(X_test)

{利用混淆矩陣檢測錯誤樣本數}

from sklearn.metrics import confusion_matrix
cm = confusion_matrix(y_test, y_pred)

https://ithelp.ithome.com.tw/upload/images/20200915/20129894hNxlnXwwWJ.png

{將結果以圖表成呈現}(訓練集)

from matplotlib.colors import ListedColormap
X_set, y_set = X_train, y_train
X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01),
                     np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01))
plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape),
             alpha = 0.75, cmap = ListedColormap(('red', 'green')))
plt.xlim(X1.min(), X1.max())
plt.ylim(X2.min(), X2.max())
for i, j in enumerate(np.unique(y_set)):
    plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1],
                c = ListedColormap(('orange', 'blue'))(i), label = j)
plt.title('Decision tree (Training set)')
plt.xlabel('Age')
plt.ylabel('Estimated Salary')
plt.legend()
plt.show()

https://ithelp.ithome.com.tw/upload/images/20200915/201298941gB8iVSzW1.png

{將結果以圖表成呈現}(測試集)

from matplotlib.colors import ListedColormap
X_set, y_set = X_test, y_test
X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01),
                     np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01))
plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape),
             alpha = 0.75, cmap = ListedColormap(('red', 'green')))
plt.xlim(X1.min(), X1.max())
plt.ylim(X2.min(), X2.max())
for i, j in enumerate(np.unique(y_set)):
    plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1],
                c = ListedColormap(('orange', 'blue'))(i), label = j)
plt.title('Decision tree (Test set)')
plt.xlabel('Age')
plt.ylabel('Estimated Salary')
plt.legend()
plt.show()

https://ithelp.ithome.com.tw/upload/images/20200915/20129894eYeiNDjhf3.png


上一篇
Day4 決策樹介紹
下一篇
DAY6
系列文
資資不倦8
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言