Skip to content
Snippets Groups Projects
Commit 353aaf19 authored by Armin Co's avatar Armin Co
Browse files

Deep configurations

parent 3494392f
Branches
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ import time
start = time.time()
c_32 = ew.Config()
c_32.name = 'FirstLayerBase'
c_32.name = 'Deep'
c_32.render = False
c_32.force_cpu = True
c_32.env = gym.make('CartPole-v0')
......@@ -36,6 +36,21 @@ c_512.net_layout = [512, 32]
c_1024 = copy.deepcopy(c_32)
c_1024.net_layout = [1024, 32]
cd_3 = copy.deepcopy(c_32)
cd_3.net_layout[128, 64, 32]
cd_4 = copy.deepcopy(c_32)
cd_4.net_layout[128, 64, 32, 32]
cd_128 = copy.deepcopy(c_32)
cd_128.net_layout[128, 128, 128]
cd_256 = copy.deepcopy(c_32)
cd_256.net_layout[256, 256, 256]
cd_512 = copy.deepcopy(c_32)
cd_512.net_layout[512, 512, 512]
conf = c_32
conf.conf_to_name()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment