Skip to content

Public release for "Distillation and Retrieving Generalizable Knowledge for Robot Manipulation via Language Corrections"

Notifications You must be signed in to change notification settings

Stanford-ILIAD/droc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Distilling and Retrieving Generalizable Knowledge for Robot Manipulation via Language Corrections

til

We propose a method for responding to online language corrections, distilling generalizable knowledge from them, and retrieving useful knowledge for novel tasks, as described here.

Today's robot policies exhibit subpar performance when faced with the challenge of generalizing to novel environments. Human corrective feedback is a crucial form of guidance to enable such generalization. However, adapting to and learning from online human corrections is a non-trivial endeavor: not only do robots need to remember human feedback over time to retrieve the right information in new settings and reduce the intervention rate, but also they would need to be able to respond to feedback that can be arbitrary corrections about high-level human preferences to low-level adjustments to skill parameters. In this work, we present Distillation and Retrieval of Online Corrections (DROC), a large language model (LLM)-based system that can respond to arbitrary forms of language feedback, distill generalizable knowledge from corrections, and retrieve relevant past experiences based on textual and visual similarity for improving performance in novel settings. DROC is able to respond to a sequence of online language corrections that address failures in both high-level task plans and low-level skill primitives. We demonstrate that DROC effectively distills the relevant information from the sequence of online corrections in a knowledge base and retrieves that knowledge in settings with new task or object instances. DROC outperforms other techniques that directly generate robot code via LLMs by using only half of the total number of corrections needed in the first round and requires little to no corrections after two iterations.

For more details, please refer to our paper.

Installation

  1. Create a virtual environment with Python 3.8 and install all the dependencies.

    conda create -n droc python==3.8
    pip install -r requirements.txt
    pip install -e .
  2. (Optional) Download Polymetis for real robot experiments. Note this only supports PyTorch ~= 1.12. If you are using new versions of PyTorch, please refer to the monometis fork from Hengyuan Hu.

  3. Set your OpenAI key in utils/LLM_utils.py.

Code Structure

  • scripts: Contains the main script and all baseline scripts.

  • prompts: Contains all LLM prompts. For the function of each prompt, please refer to here.

  • utils: Contains all utilities for running the main script, including I/O, perception, robot control, LLM, exception handling, etc.

  • cache: Contains the knowledge base (in .pkl format), calibration results, detection results, and other caches.

Usage

Real robot experiments

Our real robot experiments are based on Polymetis. However, this only supports PyTorch ~= 1.12. If you are using new versions of PyTorch, please refer to the monometis fork from Hengyuan Hu. Due to privacy issues, we are not able to release the codes for real robot control and perception. To run real robot experiments, please implement these modules on your own by following the steps below:

  1. Implement the environment for your robot (e.g., Franka Panda) in utils/robot/panda_env.py. You may use the functions defined in utils/transformation_utils.py.

  2. Implement the camera perception code in utils/perception/camera.py.

  3. Define the task name and the corresponding clip candidates in utils/perception/perception_utils.py.

  4. Run the main script.

    python scripts/script.py --realrobot True --task <task>

    Where <task> is the name of the task to run.

Dummy testing

If you only want to test your prompts, a better choice would be running your code in a dummy mode.

python scripts/script.py --task <task>

Plan-level examples

  1. Define the task name and the corresponding clip candidates in utils/perception/perception_utils.py.

  2. Put all images for retrieval in cache/image_for_retrieval. Images should be named in the format of '{object}_x.png', e.g., 'cup_1.png'.

  3. Run the following command.

    python scripts/script.py --load_image True --task <task>

Troubleshooting

Since the released implementation is primarily concered with real world robot experiments, there may be some unexpected bugs specific to individual use cases. If you meet any bug depolying this codebase, feel free to contact [email protected].

Citation

@misc{zha2023distilling,
      title={Distilling and Retrieving Generalizable Knowledge for Robot Manipulation via Language Corrections}, 
      author={Lihan Zha and Yuchen Cui and Li-Heng Lin and Minae Kwon and Montserrat Gonzalez Arenas and Andy Zeng and Fei Xia and Dorsa Sadigh},
      year={2023},
      eprint={2311.10678},
      archivePrefix={arXiv},
      primaryClass={cs.RO}
}

About

Public release for "Distillation and Retrieving Generalizable Knowledge for Robot Manipulation via Language Corrections"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages