Skip to content

Instantly share code, notes, and snippets.

Avatar

hgharagyozyan

View GitHub Profile
View Breast cancer detection with Machine Learning
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