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

Increased minimum Epsilon for Agent

parent c45ce280
Branches
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ from steering_wheel import Controller ...@@ -7,7 +7,7 @@ from steering_wheel import Controller
class QAgent: class QAgent:
gamma = 0.99 gamma = 0.99
epsilon = 1.0 epsilon = 1.0
epsilon_min = 0.005 epsilon_min = 0.01
epsilon_decay = 0.9999 epsilon_decay = 0.9999
online_batch_size = 64 online_batch_size = 64
action_space = 1 action_space = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment