allenai / ai2thor

An open-source platform for Visual AI.
http://ai2thor.allenai.org
Apache License 2.0
1.09k stars 210 forks source link

High-level action support #1147

Closed angmavrogiannis closed 4 months ago

angmavrogiannis commented 1 year ago

Hi, first of all thank you for building such a great simulation platform!

I am working on a task planning project and want to use the simulator for a simple demonstration of breaking a high-level task down to a set of mid-level actions (e.g. add egg to pan --> grab egg, crack egg, grab cracked_egg, put cracked_egg on pan). Is there a simple way to do that without worrying about the exact location of the objects and the agent? In other words, I'm asking if there's some high-level API-like usage in the form of:

grab(egg) crack(egg) put(egg, pan)

Thank you!