Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Naresh1318 committed Nov 13, 2017
1 parent d712e8c commit 8a46dfb
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions mission_control.py → mission_control_cart.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
rand_observation_time = 5e2
prob_random = 0.9
gamma = 0.9
n_epochs = 1000
fit_epochs = 10
n_plays = 500 # TODO: Change to 100
n_actual_plays = 100
Expand All @@ -16,23 +15,13 @@
dense_1 = 40
dense_2 = 18
dense_3 = 10
"""
conv_1 = [8, 8, 4, 32]
stride_1 = [1, 4, 4, 1]
conv_2 = [4, 4, 32, 64]
stride_2 = [1, 2, 2, 1]
conv_3 = [3, 3, 64, 64]
stride_3 = [1, 1, 1, 1]
dense_1 = 512 # Was 256 before
dense_2 = 4
"""

########################################################################################################################
# Control
train_model = False
show_ui = False
show_ui = True
show_action = False

########################################################################################################################
# Paths
logdir = "./Results/CartPole_v1/" # Use: "./Results/CartPole/", "./Results/Breakout/"
logdir = "./Results/CartPole/"

0 comments on commit 8a46dfb

Please sign in to comment.