Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Data-Driven Operational Space Control for Adaptive and Robust Robot Manipulation

License

NotificationsYou must be signed in to change notification settings

NVlabs/oscar

Repository files navigation

NVIDIA Source Code LicensePython 3.7

OSCAR

This repository contains the codebase used inOSCAR: Data-Driven Operational Space Control for Adaptive and Robust Robot Manipulation.

More generally, this codebase is a modular framework built uponIsaacGym, and intended to support future robotics research leveraging large-scale training.

Of note, this repo contains:

  • High-quality controller implementations of OSC, IK, and Joint-Based controllers that have been fully parallelized for PyTorch
  • Complex Robot Manipulation tasks for benchmarking learning algorithms
  • Modular structure enabling rapid prototyping of additional robots, controllers, and environments

Requirements

  • Linux machine
  • Conda
  • NVIDIA GPU + CUDA

Getting Started

First, clone this repo and initialize the submodules:

git clone https://github.com/NVlabs/oscar.gitcd oscargit submodule update --init --recursive

Next, create a new conda environment to be used for this repo and activate the repo:

bash create_conda_env_oscar.shconda activate oscar

This will create a new conda environment namedoscar and additional install some dependencies. Next, we need IsaacGym. This repo itself does not contain IsaacGym, but is compatible with any version >= preview 3.0.

Install and build IsaacGymHERE.

Once installed, navigate to the python directory and install the package to this conda environment:

(oscar)cd<ISAACGYM_REPO_PATH>/python(oscar) pip install -e.

Now with IsaacGym installed, we can finally install this repo as a package:

(oscar)cd<OSCAR_REPO_PATH>(oscar) pip install -e.

That's it!

Training

Provided are helpful scripts for running training, evaluation, and finetuning. These are found in theExamples directory. You can set the Task, Controller, and other parameters directly at the top of the example script. They should run out of the box, like so:

cd examplesbash train.sh

For evaluation (including zero-shot), you can modify and run:

bash eval.sh

For finetuning on the published out-of-distribution task settings using a pretrained model, you can modify and run:

bash finetune.sh

To pretrain the initial OSCAR base network, you can modify and run:

bash pretrain_oscar.sh

Reproducing Paper Results

We provide all of our final trained models used in our published results, found intrained_models section.

Adding Custom Modules

This repo is designed to be built upon and enable future large-scale robot learning simulation research. You can add your own custom controller by seeing an example controller like theOSC controller, your own custom robot agent by seeing an example agent like theFranka agent, and your own custom task by seeing an example task like thePush task.

License

Please check theLICENSE file. OSCAR may be used non-commercially, meaning for research or evaluation purposes only. For business inquiries, please contactresearchinquiries@nvidia.com.

Citation

Please citeOSCAR if you use this framework in your publications:

@inproceedings{wong2022oscar,title={OSCAR: Data-Driven Operational Space Control for Adaptive and Robust Robot Manipulation},author={Josiah Wong and Viktor Makoviychuk and Anima Anandkumar and Yuke Zhu},booktitle={IEEE International Conference on Robotics and Automation (ICRA)},year={2022}}

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp