-
Notifications
You must be signed in to change notification settings - Fork 88
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
Is it possible to build a GT navigator using AI2THOR 2.1.0? #135
Comments
@TopCoder2K, checkout ALFWorld's oracle controller. The oracle controller uses an AStar navigator with GT grid maps of rooms.
Unfortunately, no. The simulator has changed a lot in the past 3 years. Receptacles were moved around, objects look different. All these changes will require us to re-annotate the dataset, which is super expensive. Also see this: #45 |
@MohitShridhar, thank you for pointing this out! I'll look into this. Please do not close the issue, I'll close it by myself if there are no additional questions.
Well... I've seen #45 but the simulator version here is also old, isn't it? Moreover, we've encountered inconsistent instructions, bugs in AI2THOR, problems with ALFRED deployment, and so on, so creating ALFRED 2.0 may seem reasonable. |
@MohitShridhar, thank you one more time! I've integrated the oracle navigator into our pipeline using your code. The only problem is that it can only navigate to receptacles. I can implement teleportation to objects (e.g. apples, knives that are not hidden) using iteration through all reachable positions (obtained by |
@TopCoder2K, if I remember correctly, there is no easy solution to this, at least with |
@MohitShridhar, can UPD1: UPD2: |
@TopCoder2K, this script is how the JSONs were generated: https://github.com/askforalfred/alfred/blob/master/gen/layouts/precompute_layout_locations.py#L36 I think we only checked for Closing, Opening, and PickUp. But this should be extendable to other actions. |
@MohitShridhar, thank you for the link. Hmmm, it's strange. I don't fully understand your script, but I can clearly see that UPD1: |
I've been trying to fix as much problems as possible (with a constraint of spending reasonable time on that) and ended up with a good version of |
The latest versions have the
'GetShortestPath'
and'GetShortestPathToPoint'
actions, so it is possible to build a trajectory to any desired object. Using this, one can build a GT navigator. But how can this be achieved in the 2.1.0 AI2THOR?Also, are there any plans to update the simulator or create something like ALFRED 2.0? :)
The text was updated successfully, but these errors were encountered: