<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
使用python的numpy模組實現邏輯迴歸模型的程式碼,供大家參考,具體內容如下
使用了numpy模組,pandas模組,matplotlib模組
1.初始化引數
def initial_para(nums_feature): """initial the weights and bias which is zero""" #nums_feature是輸入資料的屬性數目,因此權重w是[1, nums_feature]維 #且w和b均初始化為0 w = np.zeros((1, nums_feature)) b = 0 return w, b
2.邏輯迴歸方程
def activation(x, w , b): """a linear function and then sigmoid activation function: x_ = w*x +b,y = 1/(1+exp(-x_))""" #線性方程,輸入的x是[batch, 2]維,輸出是[1, batch]維,batch是模型優化迭代一次輸入資料的數目 #[1, 2] * [2, batch] = [1, batch], 所以是w * x.T(x的轉置) #np.dot是矩陣乘法 x_ = np.dot(w, x.T) + b #np.exp是實現e的x次冪 sigmoid = 1 / (1 + np.exp(-x_)) return sigmoid
3.梯度下降
def gradient_descent_batch(x, w, b, label, learning_rate): #獲取輸入資料的數目,即batch大小 n = len(label) #進行邏輯迴歸預測 sigmoid = activation(x, w, b) #損失函數,np.sum是將矩陣求和 cost = -np.sum(label.T * np.log(sigmoid) + (1-label).T * np.log(1-sigmoid)) / n #求對w和b的偏導(即梯度值) g_w = np.dot(x.T, (sigmoid - label.T).T) / n g_b = np.sum((sigmoid - label.T)) / n #根據梯度更新引數 w = w - learning_rate * g_w.T b = b - learning_rate * g_b return w, b, cost
4.模型優化
def optimal_model_batch(x, label, nums_feature, step=10000, batch_size=1): """train the model with batch""" length = len(x) w, b = initial_para(nums_feature) for i in range(step): #隨機獲取一個batch數目的資料 num = randint(0, length - 1 - batch_size) x_batch = x[num:(num+batch_size), :] label_batch = label[num:num+batch_size] #進行一次梯度更新(優化) w, b, cost = gradient_descent_batch(x_batch, w, b, label_batch, 0.0001) #每1000次列印一下損失值 if i%1000 == 0: print('step is : ', i, ', cost is: ', cost) return w, b
5.讀取資料,資料預處理,訓練模型,評估精度
import numpy as np import pandas as pd from sklearn.model_selection import train_test_split from random import randint from sklearn.preprocessing import StandardScaler def _main(): #讀取csv格式的資料data_path是資料的路徑 data = pd.read_csv('data_path') #獲取樣本屬性和標籤 x = data.iloc[:, 2:4].values y = data.iloc[:, 4].values #將資料集分為測試集和訓練集 x_train, x_test, y_train, y_test = train_test_split(x, y, test_size = 0.2, random_state=0) #資料預處理,去均值化 standardscaler = StandardScaler() x_train = standardscaler.fit_transform(x_train) x_test = standardscaler.transform(x_test) #w, b = optimal_model(x_train, y_train, 2, 50000) #訓練模型 w, b = optimal_model_batch(x_train, y_train, 2, 50000, 64) print('trian is over') #對測試集進行預測,並計算精度 predict = activation(x_test, w, b).T n = 0 for i, p in enumerate(predict): if p >=0.5: if y_test[i] == 1: n += 1 else: if y_test[i] == 0: n += 1 print('accuracy is : ', n / len(y_test))
6.結果視覺化
predict = np.reshape(np.int32(predict), [len(predict)]) #將預測結果以散點圖的形式視覺化 for i, j in enumerate(np.unique(predict)): plt.scatter(x_test[predict == j, 0], x_test[predict == j, 1], c = ListedColormap(('red', 'blue'))(i), label=j) plt.show()
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45