Answers for "stratified split train test"

30

train test split sklearn

from sklearn.model_selection import train_test_split

X = df.drop(['target'],axis=1).values   # independant features
y = df['target'].values					# dependant variable

# Choose your test size to split between training and testing sets:
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.25, random_state=42)
Posted by: Guest on November-08-2020
0

pandas split train test

from sklearn.model_selection import train_test_split

train, test = train_test_split(df, test_size=0.2)
Posted by: Guest on December-24-2020
1

how to distribute a dataset in train and test using scikit

from sklearn.model_selection import train_test_split
xTrain, xTest, yTrain, yTest = train_test_split(x, y, test_size = 0.2, random_state = 0)
Posted by: Guest on June-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language