นี่คือฟังก์ชัน Python ที่แยกดาต้าเฟรมของ Pandas ออกเป็นรถไฟการตรวจสอบและทดสอบดาต้าเฟรมด้วยการสุ่มตัวอย่างแบบแบ่งชั้น ดำเนินการแยกนี้โดยเรียกฟังก์ชันของ scikit-learn train_test_split()
สองครั้ง
import pandas as pd
from sklearn.model_selection import train_test_split
def split_stratified_into_train_val_test(df_input, stratify_colname='y',
frac_train=0.6, frac_val=0.15, frac_test=0.25,
random_state=None):
'''
Splits a Pandas dataframe into three subsets (train, val, and test)
following fractional ratios provided by the user, where each subset is
stratified by the values in a specific column (that is, each subset has
the same relative frequency of the values in the column). It performs this
splitting by running train_test_split() twice.
Parameters
----------
df_input : Pandas dataframe
Input dataframe to be split.
stratify_colname : str
The name of the column that will be used for stratification. Usually
this column would be for the label.
frac_train : float
frac_val : float
frac_test : float
The ratios with which the dataframe will be split into train, val, and
test data. The values should be expressed as float fractions and should
sum to 1.0.
random_state : int, None, or RandomStateInstance
Value to be passed to train_test_split().
Returns
-------
df_train, df_val, df_test :
Dataframes containing the three splits.
'''
if frac_train + frac_val + frac_test != 1.0:
raise ValueError('fractions %f, %f, %f do not add up to 1.0' % \
(frac_train, frac_val, frac_test))
if stratify_colname not in df_input.columns:
raise ValueError('%s is not a column in the dataframe' % (stratify_colname))
X = df_input
y = df_input[[stratify_colname]]
df_train, df_temp, y_train, y_temp = train_test_split(X,
y,
stratify=y,
test_size=(1.0 - frac_train),
random_state=random_state)
relative_frac_test = frac_test / (frac_val + frac_test)
df_val, df_test, y_val, y_test = train_test_split(df_temp,
y_temp,
stratify=y_temp,
test_size=relative_frac_test,
random_state=random_state)
assert len(df_input) == len(df_train) + len(df_val) + len(df_test)
return df_train, df_val, df_test
ด้านล่างนี้เป็นตัวอย่างการทำงานที่สมบูรณ์
พิจารณาชุดข้อมูลที่มีป้ายกำกับที่คุณต้องการดำเนินการแบ่งชั้น ป้ายนี้มีการกระจายของตัวเองในชุดเดิมที่บอกว่า 75% foo
, 15% bar
และ baz
10% ตอนนี้เรามาแยกชุดข้อมูลออกเป็นรถไฟการตรวจสอบความถูกต้องและการทดสอบเป็นชุดย่อยโดยใช้อัตราส่วน 60/20/20 โดยที่แต่ละส่วนจะมีการกระจายป้ายกำกับเหมือนกัน ดูภาพประกอบด้านล่าง:
นี่คือชุดข้อมูลตัวอย่าง:
df = pd.DataFrame( { 'A': list(range(0, 100)),
'B': list(range(100, 0, -1)),
'label': ['foo'] * 75 + ['bar'] * 15 + ['baz'] * 10 } )
df.head()
df.shape
df.label.value_counts()
ตอนนี้ขอเรียกใช้split_stratified_into_train_val_test()
ฟังก์ชันจากด้านบนเพื่อรับการฝึกอบรมการตรวจสอบและทดสอบดาต้าเฟรมตามอัตราส่วน 60/20/20
df_train, df_val, df_test = \
split_stratified_into_train_val_test(df, stratify_colname='label', frac_train=0.60, frac_val=0.20, frac_test=0.20)
สาม dataframes df_train
, df_val
และdf_test
มีทั้งหมดแถวเดิม แต่ขนาดของพวกเขาจะเป็นไปตามอัตราส่วนดังกล่าวข้างต้น
df_train.shape
df_val.shape
df_test.shape
นอกจากนี้แต่ละสามแยกจะมีการกระจายเดียวกันของฉลากคือ 75% foo
, 15% bar
และ baz
10%
df_train.label.value_counts()
df_val.label.value_counts()
df_test.label.value_counts()