Skip to content

Instantly share code, notes, and snippets.

@willywildan
Created December 12, 2021 13:08
Show Gist options
  • Save willywildan/ff03b93a4e22012004a4e1c38aec3e6a to your computer and use it in GitHub Desktop.
Save willywildan/ff03b93a4e22012004a4e1c38aec3e6a to your computer and use it in GitHub Desktop.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
sns.set(style="darkgrid")
from sklearn.ensemble import RandomForestClassifier
from sklearn.preprocessing import OneHotEncoder, LabelEncoder, StandardScaler
from sklearn.metrics import roc_curve, auc
from sklearn.model_selection import StratifiedKFold
import string
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment