-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Observation Space Interpretation #22
Comments
This is a good start to understanding it: https://github.com/semitable/robotic-warehouse/blob/master/rware/warehouse.py#L404 you can even use the "slow" observations (observation type DICT) that you can then probe as a dictionary. See here: |
related to #17 |
@semitable Thank you for the help. I still dont get it what the sensor range means. Basically it is the range of the agent. But if the sensor_range is 1 it means that the agent has the informations about the cell above,right,left and above? Btw how could we extract the positions of the requested shelfs? |
If sensor range is 1, then the agent can see everything inside a 3x3 box centred around it, i.e. the directions you mention plus the diagonal ones. You mean the absolute positions? For that you might have to dig into the code as the absolute position of shelves is not provided in the observation vector. |
Yes, I was asking for the absolute positions. Where can i find them to return them on the observation space? |
I think you'll have to extract them from |
Thank you! I finally manage to extract the absolute positions of the requested shelfs in the observation space. P.S: I have changed the original grid from my initial comment. Here is the actual grid: |
I have this environment(photo) and when I print the observation space I receive this list. Where can I find the structure of the observation space to understand better what each elements really means. The only thing that I understand is the position of the agent, which are the first 2 elements ( 5,2).
The text was updated successfully, but these errors were encountered: