Agent loitering around goal rather than reaching it #453
Unanswered
gdaddi
asked this question in
Problem Implementation
Replies: 1 comment 3 replies
-
It looks like your agent just realized that it will no longer receive a reward once the problem terminated. So the optimal thing to do is to stay close to the goal and never terminate. You could set a very high goal reward and a discount factor < 1 or a step cost. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! Can a problem be set up to terminate once a goal is reached?
I have a reward function that increases as the agent's position gets closer to a goal and a terminal condition set to trigger within a certain radius of the goal. The behavior I get with this reward/terminal structure is that the agent moves around the terminal condition accumulating reward but never entering the terminal condition. Is there a way to have the agent move into the terminal-goal condition? Thanks
Beta Was this translation helpful? Give feedback.
All reactions