Last active
July 25, 2017 08:20
-
-
Save yashpatel5400/723649e6ffd9cc92e3df77b016b2ff02 to your computer and use it in GitHub Desktop.
OpenAI CartPole w/ Keras: Model
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
""" | |
__name__ = model.py | |
__author__ = Yash Patel | |
__description__ = Defines model to be trained on the Cartpole data, | |
predicting the directioal action to take given 4D observation state | |
""" | |
from keras.models import Sequential | |
from keras.layers import Dense, Dropout | |
def create_model(): | |
model = Sequential() | |
model.add(Dense(128, input_shape=(4,), activation="relu")) | |
model.add(Dropout(0.6)) | |
model.add(Dense(256, activation="relu")) | |
model.add(Dropout(0.6)) | |
model.add(Dense(512, activation="relu")) | |
model.add(Dropout(0.6)) | |
model.add(Dense(256, activation="relu")) | |
model.add(Dropout(0.6)) | |
model.add(Dense(128, activation="relu")) | |
model.add(Dropout(0.6)) | |
model.add(Dense(2, activation="softmax")) | |
model.compile( | |
loss="categorical_crossentropy", | |
optimizer="adam", | |
metrics=["accuracy"]) | |
return model | |
if __name__ == "__main__": | |
model = create_model() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment