Skip to content

Instantly share code, notes, and snippets.

@BinarySpoon
Created February 25, 2021 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinarySpoon/d8fdfa729301196bd4b156018fe920c7 to your computer and use it in GitHub Desktop.
Save BinarySpoon/d8fdfa729301196bd4b156018fe920c7 to your computer and use it in GitHub Desktop.
# A.Importing Libraries -->
import pandas as pd
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from sklearn.metrics import classification_report
from sklearn.metrics import confusion_matrix
# Models Used -->
from sklearn.ensemble import RandomForestClassifier
from sklearn.tree import DecisionTreeClassifier
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.svm import SVC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment