You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I study with husky robot in a virtual environment about RL. I used (progress) variable that stands for progress = potential - potential_old . So, I aim that the agent must make progress through target location in environment. The function is calc_potential() for this purpose. I need to understand specific point of the function. Function code is:
def calc_potential(self):
# progress in potential field is speed*dt, typical speed is about 2-3 meter per second, this potential will change 2-3 per frame (not per second),
return - self.walk_target_dist / self.scene.dt
This force the agent to go towards to target. But, I need change this situation at some points such as walls, stairs and holes. Let's back to the question:
Could you describe definition of potential for husky robot?
What is the effect of division self.scene.dt ?
What happened if I change self.walk_target_dist with constant parameters? (I think, It forces the agent go faster but I need different sights.)
This discussion was converted from issue #2845 on April 26, 2021 03:58.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello dear contributors,
I study with husky robot in a virtual environment about RL. I used (progress) variable that stands for
progress = potential - potential_old
. So, I aim that the agent must make progress through target location in environment. The function is calc_potential() for this purpose. I need to understand specific point of the function. Function code is:This force the agent to go towards to target. But, I need change this situation at some points such as walls, stairs and holes. Let's back to the question:
self.scene.dt
?Thank you in advance. Have a nice day.
Beta Was this translation helpful? Give feedback.
All reactions