Last active
March 20, 2020 11:17
-
-
Save sadimanna/97cd55a454653211e335a7d2e205fe05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
train_data = pd.read_csv('training_labels.csv') | |
Y = train_data[['label']] | |
kf = KFold(n_splits = 5) | |
skf = StratifiedKFold(n_split = 5, random_state = 7, shuffle = True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment