Last active
June 23, 2020 20:26
-
-
Save ahmetozlu/06b92f8b7f5a5149e46d51fbc49d5d67 to your computer and use it in GitHub Desktop.
This file contains 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
# imports | |
from keras.models import Sequential | |
from keras.layers import Dense | |
from keras.layers import Dropout | |
from sklearn.metrics import r2_score | |
import matplotlib.pyplot as plt | |
import numpy | |
from keras.optimizers import Adam | |
import keras | |
from matplotlib import pyplot | |
from keras.callbacks import EarlyStopping | |
import pandas as pd | |
from sklearn.preprocessing import LabelEncoder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment