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 | |
from sklearn.preprocessing import LabelEncoder, OneHotEncoder | |
from sklearn.compose import ColumnTransformer | |
from sklearn.model_selection import train_test_split | |
from sklearn.preprocessing import StandardScaler | |
# Importing the Keras libraries and packages | |
from keras.models import Sequential | |
from keras.layers import Dense | |
from sklearn.metrics import confusion_matrix |