วิธีที่ดีในการแบ่งอาร์เรย์ NumPy แบบสุ่มเป็นชุดข้อมูลการฝึกอบรมและการทดสอบ / การตรวจสอบความถูกต้องคืออะไร? สิ่งที่คล้ายกับcvpartition
หรือcrossvalind
ฟังก์ชันใน Matlab
วิธีที่ดีในการแบ่งอาร์เรย์ NumPy แบบสุ่มเป็นชุดข้อมูลการฝึกอบรมและการทดสอบ / การตรวจสอบความถูกต้องคืออะไร? สิ่งที่คล้ายกับcvpartition
หรือcrossvalind
ฟังก์ชันใน Matlab
คำตอบ:
หากคุณต้องการแบ่งชุดข้อมูลออกเป็นสองส่วนคุณสามารถใช้numpy.random.shuffle
หรือnumpy.random.permutation
หากคุณต้องการติดตามดัชนี:
import numpy
# x is your dataset
x = numpy.random.rand(100, 5)
numpy.random.shuffle(x)
training, test = x[:80,:], x[80:,:]
หรือ
import numpy
# x is your dataset
x = numpy.random.rand(100, 5)
indices = numpy.random.permutation(x.shape[0])
training_idx, test_idx = indices[:80], indices[80:]
training, test = x[training_idx,:], x[test_idx,:]
มีหลายวิธีที่จะเป็นซ้ำ ๆ พาร์ทิชันชุดข้อมูลเดียวกันสำหรับการตรวจสอบข้าม กลยุทธ์หนึ่งคือการสุ่มตัวอย่างจากชุดข้อมูลโดยทำซ้ำ:
import numpy
# x is your dataset
x = numpy.random.rand(100, 5)
training_idx = numpy.random.randint(x.shape[0], size=80)
test_idx = numpy.random.randint(x.shape[0], size=20)
training, test = x[training_idx,:], x[test_idx,:]
ในที่สุดsklearnมีวิธีการตรวจสอบข้ามหลายวิธี (k-fold, leave-n-out, ... ) นอกจากนี้ยังรวมถึงวิธีการ"การสุ่มตัวอย่างแบบแบ่งชั้น"ขั้นสูงที่สร้างพาร์ติชันของข้อมูลที่สมดุลกับคุณลักษณะบางอย่างเช่นเพื่อให้แน่ใจว่ามีตัวอย่างเชิงบวกและเชิงลบในสัดส่วนที่เท่ากันในชุดการฝึกอบรมและการทดสอบ
มีอีกทางเลือกหนึ่งที่เกี่ยวข้องกับการใช้ scikit-learn ตามที่วิกิอธิบายของ scikitคุณสามารถใช้คำแนะนำต่อไปนี้:
from sklearn.model_selection import train_test_split
data, labels = np.arange(10).reshape((5, 2)), range(5)
data_train, data_test, labels_train, labels_test = train_test_split(data, labels, test_size=0.20, random_state=42)
วิธีนี้ช่วยให้คุณสามารถซิงค์ป้ายกำกับสำหรับข้อมูลที่คุณพยายามแยกออกเป็นการฝึกอบรมและทดสอบ
เพียงแค่ทราบ ในกรณีที่คุณต้องการชุดฝึกทดสอบและตรวจสอบความถูกต้องคุณสามารถทำได้:
from sklearn.cross_validation import train_test_split
X = get_my_X()
y = get_my_y()
x_train, x_test, y_train, y_test = train_test_split(X, y, test_size=0.3)
x_test, x_val, y_test, y_val = train_test_split(x_test, y_test, test_size=0.5)
พารามิเตอร์เหล่านี้จะให้ 70% สำหรับการฝึกอบรมและ 15% สำหรับการทดสอบและชุดวาล หวังว่านี่จะช่วยได้
from sklearn.cross_validation import train_test_split
เพื่อให้ชัดเจนว่าคุณใช้โมดูลใด
a=0.7
, b=0.15
, c=0.15
และd = dataset
, N=len(dataset)
แล้วx_train = dataset[0:int(a*N)]
, และx_test = dataset[int(a*N):int((a+b)*N)]
x_val = dataset[int((a+b)*N):]
from sklearn.model_selection import train_test_split
เนื่องจากsklearn.cross_validation
โมดูลเลิกใช้งานแล้วคุณสามารถใช้:
import numpy as np
from sklearn.model_selection import train_test_split
X, y = np.arange(10).reshape((5, 2)), range(5)
X_trn, X_tst, y_trn, y_tst = train_test_split(X, y, test_size=0.2, random_state=42)
คุณอาจพิจารณาการแบ่งชั้นเป็นชุดการฝึกอบรมและการทดสอบ การแบ่งเริ่มต้นยังสร้างชุดการฝึกอบรมและการทดสอบแบบสุ่ม แต่ในลักษณะที่รักษาสัดส่วนชั้นเรียนเดิมไว้ ทำให้ชุดการฝึกอบรมและการทดสอบสะท้อนคุณสมบัติของชุดข้อมูลเดิมได้ดีขึ้น
import numpy as np
def get_train_test_inds(y,train_proportion=0.7):
'''Generates indices, making random stratified split into training set and testing sets
with proportions train_proportion and (1-train_proportion) of initial sample.
y is any iterable indicating classes of each observation in the sample.
Initial proportions of classes inside training and
testing sets are preserved (stratified sampling).
'''
y=np.array(y)
train_inds = np.zeros(len(y),dtype=bool)
test_inds = np.zeros(len(y),dtype=bool)
values = np.unique(y)
for value in values:
value_inds = np.nonzero(y==value)[0]
np.random.shuffle(value_inds)
n = int(train_proportion*len(value_inds))
train_inds[value_inds[:n]]=True
test_inds[value_inds[n:]]=True
return train_inds,test_inds
y = np.array([1,1,2,2,3,3])
train_inds,test_inds = get_train_test_inds(y,train_proportion=0.5)
print y[train_inds]
print y[test_inds]
รหัสนี้ส่งออก:
[1 2 3]
[1 2 3]
value_inds
เป็นดัชนีจริง ๆ แต่ผลลัพธ์ไม่ใช่ดัชนี แต่มาสก์เท่านั้น
ฉันเขียนฟังก์ชันสำหรับโครงการของฉันเองเพื่อทำสิ่งนี้ (แม้ว่าจะไม่ใช้ numpy):
def partition(seq, chunks):
"""Splits the sequence into equal sized chunks and them as a list"""
result = []
for i in range(chunks):
chunk = []
for element in seq[i:len(seq):chunks]:
chunk.append(element)
result.append(chunk)
return result
หากคุณต้องการสุ่มชิ้นส่วนให้สุ่มรายการก่อนส่งต่อ
นี่คือรหัสสำหรับแบ่งข้อมูลออกเป็น n = 5 เท่าในลักษณะแบ่งชั้น
% X = data array
% y = Class_label
from sklearn.cross_validation import StratifiedKFold
skf = StratifiedKFold(y, n_folds=5)
for train_index, test_index in skf:
print("TRAIN:", train_index, "TEST:", test_index)
X_train, X_test = X[train_index], X[test_index]
y_train, y_test = y[train_index], y[test_index]
ขอบคุณ pberkes สำหรับคำตอบของคุณ ฉันเพิ่งแก้ไขเพื่อหลีกเลี่ยง (1) การแทนที่ในขณะที่สุ่มตัวอย่าง (2) อินสแตนซ์ที่ซ้ำกันเกิดขึ้นทั้งในการฝึกอบรมและการทดสอบ:
training_idx = np.random.choice(X.shape[0], int(np.round(X.shape[0] * 0.8)),replace=False)
training_idx = np.random.permutation(np.arange(X.shape[0]))[:np.round(X.shape[0] * 0.8)]
test_idx = np.setdiff1d( np.arange(0,X.shape[0]), training_idx)
หลังจากอ่านและคำนึงถึงวิธีการต่างๆในการแยกข้อมูลเพื่อฝึกอบรมและทดสอบฉันตัดสินใจที่จะหมดเวลา
ฉันใช้ 4 วิธีที่แตกต่างกัน (ไม่ใช่วิธีการใช้ไลบรารี sklearn ซึ่งฉันแน่ใจว่าจะให้ผลลัพธ์ที่ดีที่สุดเนื่องจากได้รับการออกแบบและทดสอบโค้ดมาเป็นอย่างดี):
วิธีที่ 3 ชนะโดยใช้เวลาที่สั้นที่สุดหลังจากนั้นวิธีที่ 1 และวิธีที่ 2 และ 4 พบว่าไม่มีประสิทธิภาพจริงๆ
รหัสสำหรับ 4 วิธีต่างๆที่ฉันตั้งเวลาไว้:
import numpy as np
arr = np.random.rand(100, 3)
X = arr[:,:2]
Y = arr[:,2]
spl = 0.7
N = len(arr)
sample = int(spl*N)
#%% Method 1: shuffle the whole matrix arr and then split
np.random.shuffle(arr)
x_train, x_test, y_train, y_test = X[:sample,:], X[sample:, :], Y[:sample, ], Y[sample:,]
#%% Method 2: shuffle the indecies and then shuffle and apply to X and Y
train_idx = np.random.choice(N, sample)
Xtrain = X[train_idx]
Ytrain = Y[train_idx]
test_idx = [idx for idx in range(N) if idx not in train_idx]
Xtest = X[test_idx]
Ytest = Y[test_idx]
#%% Method 3: shuffle indicies without a for loop
idx = np.random.permutation(arr.shape[0]) # can also use random.shuffle
train_idx, test_idx = idx[:sample], idx[sample:]
x_train, x_test, y_train, y_test = X[train_idx,:], X[test_idx,:], Y[train_idx,], Y[test_idx,]
#%% Method 4: using pandas dataframe to split
import pandas as pd
df = pd.read_csv(file_path, header=None) # Some csv file (I used some file with 3 columns)
train = df.sample(frac=0.7, random_state=200)
test = df.drop(train.index)
และในบางครั้งเวลาขั้นต่ำในการทำซ้ำ 3 ครั้งจาก 1,000 ลูปคือ:
หวังว่าจะเป็นประโยชน์!
เป็นไปได้ว่าคุณไม่เพียง แต่ต้องแยกไปฝึกอบรมและทดสอบเท่านั้น แต่ยังรวมถึงการตรวจสอบความถูกต้องข้ามเพื่อให้แน่ใจว่าแบบจำลองของคุณมีลักษณะทั่วไป ฉันสมมติว่าข้อมูลการฝึกอบรม 70% การตรวจสอบความถูกต้อง 20% และข้อมูลการระงับ / การทดสอบ 10%
ตรวจสอบnp.split :
ถ้า indices_or_sections เป็นอาร์เรย์ 1-D ของจำนวนเต็มที่เรียงลำดับรายการจะระบุตำแหน่งที่แบ่งอาร์เรย์ตามแกน ตัวอย่างเช่น [2, 3] จะให้ผลลัพธ์เป็นแกน = 0
ary [: 2] ary [2: 3] ary [3:]
t, v, h = np.split(df.sample(frac=1, random_state=1), [int(0.7*len(df)), int(0.9*len(df))])
แยกเป็นการทดสอบรถไฟและถูกต้อง
x =np.expand_dims(np.arange(100), -1)
print(x)
indices = np.random.permutation(x.shape[0])
training_idx, test_idx, val_idx = indices[:int(x.shape[0]*.9)], indices[int(x.shape[0]*.9):int(x.shape[0]*.95)], indices[int(x.shape[0]*.9):int(x.shape[0]*.95)]
training, test, val = x[training_idx,:], x[test_idx,:], x[val_idx,:]
print(training, test, val)
ฉันทราบดีว่าโซลูชันของฉันไม่ได้ดีที่สุด แต่มีประโยชน์เมื่อคุณต้องการแยกข้อมูลด้วยวิธีง่ายๆโดยเฉพาะอย่างยิ่งเมื่อสอนวิทยาศาสตร์ข้อมูลให้กับมือใหม่!
def simple_split(descriptors, targets):
testX_indices = [i for i in range(descriptors.shape[0]) if i % 4 == 0]
validX_indices = [i for i in range(descriptors.shape[0]) if i % 4 == 1]
trainX_indices = [i for i in range(descriptors.shape[0]) if i % 4 >= 2]
TrainX = descriptors[trainX_indices, :]
ValidX = descriptors[validX_indices, :]
TestX = descriptors[testX_indices, :]
TrainY = targets[trainX_indices]
ValidY = targets[validX_indices]
TestY = targets[testX_indices]
return TrainX, ValidX, TestX, TrainY, ValidY, TestY
ตามรหัสนี้ข้อมูลจะถูกแบ่งออกเป็นสามส่วน - 1/4 สำหรับส่วนทดสอบอีก 1/4 สำหรับส่วนการตรวจสอบความถูกต้องและ 2/4 สำหรับชุดฝึก