中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中如何實現將數據分成訓練集與測試集的方法

發布時間:2020-08-26 15:59:55 來源:腳本之家 閱讀:236 作者:DeepRunning 欄目:開發技術

接下來,直接給出大家響應的代碼,并對每一行進行標注,希望能夠幫到大家。

需要用到的是庫是。numpy 、sklearn。

#導入相應的庫(對數據庫進行切分需要用到的庫是sklearn.model_selection 中的 train_test_split)
import numpy as np
from sklearn.model_selection import train_test_split
 #首先,讀取.CSV文件成矩陣的形式。
my_matrix = np.loadtxt(open("xxxxxx.csv"),delimiter=",",skiprows=0)
 #對于矩陣而言,將矩陣倒數第一列之前的數值給了X(輸入數據),將矩陣大最后一列的數值給了y(標簽)
X, y = my_matrix[:,:-1],my_matrix[:,-1]
 #利用train_test_split方法,將X,y隨機劃分問,訓練集(X_train),訓練集標簽(X_test),測試卷(y_train),
 測試集標簽(y_test),安訓練集:測試集=7:3的
 概率劃分,到此步驟,可以直接對數據進行處理
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)
 #此步驟,是為了將訓練集與數據集的數據分別保存為CSV文件
 #np.column_stack將兩個矩陣進行組合連接
train= np.column_stack((X_train,y_train))
 #numpy.savetxt 將txt文件保存為。csv結尾的文件
numpy.savetxt('train_usual.csv',train, delimiter = ',')
test = np.column_stack((X_test, y_test))
numpy.savetxt('test_usual.csv', test, delimiter = ',')

完整沒解釋的代碼部分為

import numpy as np
from sklearn.model_selection import train_test_split
my_matrix = np.loadtxt(open("xxxxx.csv"),delimiter=",",skiprows=0)
X, y = my_matrix[:,:-1],my_matrix[:,-1]
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)
train= np.column_stack((X_train,y_train))
numpy.savetxt('train_usual.csv',train, delimiter = ',')
test = np.column_stack((X_test, y_test))
numpy.savetxt('test_usual.csv', test, delimiter = ',')

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普洱| 五河县| 阳山县| 越西县| 麻阳| 江口县| 治县。| 大埔区| 昭通市| 禹州市| 兰坪| 济南市| 庆城县| 高密市| 怀远县| 桐梓县| 娄烦县| 茌平县| 石阡县| 郑州市| 洛隆县| 隆林| 冀州市| 望奎县| 宣城市| 曲阜市| 昌乐县| 陆丰市| 洛阳市| 土默特右旗| 莲花县| 临安市| 和龙市| 龙泉市| 瓦房店市| 北宁市| 安吉县| 夏河县| 阳江市| 阿克苏市| 崇明县|