NOTE: This repository is based on the paper "Long-Horizon Planning with Functional Object-Oriented Networks".
- Check out how this code has been applied to task planning in our recent work!
This repository contains Python scripts that are designed to convert files from the FOON (short for the functional object-oriented network) dataset into PDDL problem and domain files.
This requires components (specifically the FOON_graph_analyzer.py
, FOON_retrieval.py
, and FOON_classes.py
files) from the FOON API repository, which can be found in this repository under the FOON_scripts folder.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
To download this, use the following command (as this repository's code depends on certain submodules):
>> git clone https://github.com/davidpaulius/foon_to_pddl --recursive
To run this code (using Python 3), simply use the following line in your terminal or command line:
>> python FOON_to_PDDL.py --file='example.txt' [ --type=1/2] [--format='OCP'/'FOON'] [--help]
Where example.txt
in --file'example.txt'
is the name of the text file containing the FOON graph description.
There are optional parameters: --type
and --format
.
- ```--type``` is used to only produce a single file (either domain or problem). The parameter ```--type``` takes a value of either ```1``` (domain) or ```2``` (problem); by default, this script will produce both domain and problem files.
- ```--format``` is used to define the PDDL format to generate. By default, it will produce files specifically designed for [TAMP using object-centered predicates](https://arxiv.org/abs/2207.05800) (this is akin to the ```'OCP'``` flag). If ```'FOON'``` is used as the format flag, then PDDL files will be generated that will replicate the graph search procedure known as [task tree retrieval](https://arxiv.org/abs/1902.01537).
A FOON subgraph file describes a cooking procedure in the form of a bipartite graph (meaning it has two types of nodes). The FOON graph analyzer (or FGA) (found in the FOON_API repository) is used to load a graph from a subgraph file.
From a loaded subgraph, each functional unit is translated into planning operators (defined as :action
). The input nodes are used to define the preconditions (defined as :preconditions
), and the output nodes are used to define the effects of the action (defined as :effects
).
This is done with the following steps:
-
Take the name of an object node and set that to the name of the current object in focus (denoted as
<focus_object>
). -
Parse through all of the states of the object node, taking note of the following details (if using
'OCP'
option described above):-
If a node has some spatial/geometric relation state to another object (e.g.
in [bowl]
), then the relation and the relative object are taken to produce the predicate (e.g.(in bowl <focus_object>)
). This is done for relationsin
,on
, andunder
.- Please refer to Agostini et al. 2020a and Agostini et al. 2020b for more details on object-centered predicates.
-
Currently, the object-centered predicate relations such as
left
andright
are not considered. -
If a node has a physical state that cannot be described with object-centered predicates, but which is relevant to the action (based on one's requirements), then create a predicate for that state. Examples of such states are
whole
,chopped
, andmixed
. Many others exist in FOON, and these are based on states as discussed in Jelodar et al.. -
Other states can be added by simply making modifications to the
FOON_to_PDDL.py
script and adding new state terms for parsing.
-
-
If there is no indication of a spatial/geometric relation state, then assume that the object is on the working surface and the surface is under the object (i.e.,
(on table <focus_object>)
and(under <focus_object> table)
).- Objects were assumed to be constants (i.e., only one instance of each object), but multiple instances of objects could be considered. However, this is not native to FOON. Therefore, further modifications would be required for problems such as object grounding.
The :init
section of the problem file considers all starting nodes in the FOON file. Starting nodes are those nodes that are never seen as output nodes. This carries the assumption that these objects are in their basic or natural state. All of these nodes are identified using a function from the FGA (fga._identifyKitchenItems()
), which simply uses a dictionary built from the entire graph to identify such nodes.
For the translation of each node, the same rules as above are applied to create appropriate predicates.
NOTE: The goal predicates (described using :goal
) are identified by an exclamation mark character (i.e., !
) on the same line as an output object name's (i.e., O<id>\t<object name>\t<motion_identifier>\t!
). Without it, no goals will be printed automatically from this script.
Once the files have been generated, you can use any off-the-shelf planner (e.g., PDDL4J or Fast-Downward) to see if a plan can be generated. If a plan cannot be found with any FOON graph file that you are testing, be sure to carefully review the problem file for any rogue predicates that are not being satisfied in planning.
For example, with Fast-Downward, you can use the following command:
>> python path/to/fast-downward.py --alias seq-opt-lmcut <name_of_domain_file>.pddl <name_of_problem_file>.pddl
You can read more about what the --alias
argument flag means here. For now, just know that it is one type of searching approach that is available in the Fast-Downward planner.
Using the --format='FOON'
flag mentioned above, the above command will allow you to perform task tree retrieval, which will find a certain set of functional units that solves a given goal.
There are two examples provided in this repository: FOON-pour_water.txt
(a very, very basic example of pouring water from a cup to a bowl) and FOON-0076-bloody_mary.txt
(which is a simplified version of the version found in the FOON dataset).
Other graphs can also be downloaded from the FOON_API repository or the FOON website. It is much easier to start with a regular FOON file and then edit it rather than writing one from scratch due to the precise formatting required.
If you would like to visualize graphs (such as above), you can use the FOON_view tool. You can also access the tool directly through the FOON website here.
If you found this code useful for your work, please help others find this work by citing the following paper:
D. Paulius*, A. Agostini* and D. Lee, "Long-Horizon Planning and Execution With Functional Object-Oriented Networks," in IEEE Robotics and Automation Letters, vol. 8, no. 8, pp. 4513-4520, Aug. 2023, doi: 10.1109/LRA.2023.3285510.
Please contact the main developer David Paulius at dpaulius AT cs DOT brown DOT edu.