Last active
September 22, 2019 15:45
-
-
Save pierpaolo28/7d4d55f64ca43ec7e213ebc170b70668 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
import time | |
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
from matplotlib.pyplot import figure | |
import seaborn as sns | |
from sklearn import preprocessing | |
from sklearn.preprocessing import LabelEncoder | |
from sklearn.preprocessing import StandardScaler | |
from sklearn.model_selection import train_test_split | |
from sklearn.metrics import classification_report,confusion_matrix | |
from sklearn import tree | |
from sklearn.ensemble import RandomForestClassifier | |
from sklearn import svm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment