From 353aaf1928e3bb4c69836560b771e5db85fda8a3 Mon Sep 17 00:00:00 2001
From: Armin <armin.co@hs-bochum.de>
Date: Sun, 21 Feb 2021 13:55:52 +0100
Subject: [PATCH] Deep configurations

---
 run_scripts/baselines.py | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/run_scripts/baselines.py b/run_scripts/baselines.py
index 04f5ad7..9afa1c1 100644
--- a/run_scripts/baselines.py
+++ b/run_scripts/baselines.py
@@ -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()
-- 
GitLab