From 0f51360d4bd45fb246a172616e2bc2c8fa060d0d Mon Sep 17 00:00:00 2001 From: Armin <armin.co@hs-bochum.de> Date: Wed, 10 Mar 2021 13:28:23 +0100 Subject: [PATCH] Add suffix to Doubel Agent --- agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents.py b/agents.py index ce4d367..8d608cf 100644 --- a/agents.py +++ b/agents.py @@ -75,7 +75,7 @@ class DQAgent(QAgent): def __init__(self, conf): super().__init__(conf) self.q2 = QNet(conf) - self.name = 'D_' + str(self.name) + self.name = str(self.name) + 'DBL' def get_action(self, state): if np.random.rand() <= self.epsilon: -- GitLab