Open gianscarpe opened 1 year ago
Hey @gianscarpe,
The "distance to goal" measures distance from the agent to the "viewpoints" from which the object is visible. While these viewpoints themselves need to be within 1m of the goal object, the distance between the agents and these viewpoints itself should be lower than 0.1 meters for the episode to be considered successful. This has been specified here as a config parameter.
Thanks for your answer @ykarmesh . Does it mean that distance to the object must always be within 1m to get a success? E.g., if the agent is 0.99m to the goal object and the object is visible (not behind a wall for example) than it's a success?
Yes! You can visualize the viewpoints on the top down map to confirm if the goal is in view agent's current pose.
Hello! I noticed something weird regarding distance_to_goal sensor and success info. This is a trajectory. Step at time t:
Now it called action STOP
And next episode starts
I would expect the last episode to be a success, as distance to goal was <1. However, "success" measure is still 0, as you can see from the last stats.
In config file, I have
I would expect success to increase. Why is it not the case? And what does "distance_to_goal" represents? Thank you! :)