Last active
June 9, 2021 09:24
-
-
Save ParthNipunDave/f3546d400321848422b0d195224556a8 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 pandas as pd | |
| import numpy as np | |
| import seaborn as sns | |
| import matplotlib.pyplot as plt | |
| from sklearn.model_selection import train_test_split | |
| from sklearn.ensemble import RandomForestClassifier | |
| from sklearn.metrics import classification_report, recall_score | |
| from imblearn.over_sampling import SMOTE | |
| from keras.layers import Dense,Dropout | |
| from keras.models import Sequential |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment