This file contains 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
from sys import argv | |
from itertools import cycle | |
import numpy as np | |
np.random.seed(3) | |
import pandas as pd | |
from sklearn.model_selection import train_test_split, cross_validate,\ | |
StratifiedKFold | |
from sklearn.utils import shuffle | |
from sklearn.decomposition import PCA |