Caution
I highly suggest to do your own research, do not install things blindly. Use at your own risk.
Opinionated list of things related to Android.
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
import numpy as np | |
import pandas as pd | |
from matplotlib.colors import ListedColormap | |
from sklearn import datasets | |
from sklearn.datasets import make_blobs | |
from sklearn.utils import shuffle | |
from sklearn.preprocessing import MinMaxScaler, StandardScaler | |
from sklearn.model_selection import train_test_split | |
from sklearn.neighbors import KNeighborsClassifier, KNeighborsRegressor |
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
import matplotlib.pyplot as plt | |
import numpy as np | |
import h5py | |
import os | |
from sklearn.neural_network import MLPClassifier | |
from sklearn.svm import SVC | |
cwd = os.getcwd() # current working directory | |
path = os.path.join(cwd, 'data') |