myfatemi04 / monometis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Polymetis for Newer PyTorch

This is a "fork" of the Polymetis. We made some modifications to make it easier to compile & run from scratch using newer versions of pytorch becasue the the original conda package only supports pytorch 1.13 and it seems no longer actively managed.

Install & Compile

On NUC

  1. Create a cpu environment with dependencies.

  2. Build libfranka to communicate with the robot.

  3. Build & install polymetis

# clone & create env
git clone git@github.com:hengyuan-hu/monometis.git
cd monometis/
mamba env create -f polymetis/environment_cpu.yml
conda activate robo

# compile stuff
./scripts/build_libfranka.sh
mkdir -p ./polymetis/build
cd ./polymetis/build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_FRANKA=ON
make -j
cd ../..

# inside the project root
pip install -e ./polymetis

To launch the robot server

# robot
cd launcher; conda activate robo; ./launch_robot.sh

# gripper
cd launcher; conda activate robo; ./launch_gripper.sh

On Workstation

  1. Create a gpu environment with dependencies. It assumes that cuda11.8 is installed on the machine. Modify polymetis/environment.yml if a different version is desired. The relevant dependencies for pytorch are pytorch=2.0.1=py3.9_cuda11.8_cudnn8.7.0_0 and pytorch-cuda=11.8.

  2. Build & install polymetis

# clone & create *gpu* env
git clone git@github.com:hengyuan-hu/monometis.git
cd monometis/
mamba env create -f polymetis/environment.yml
conda activate robo

# compile stuff, no need to build libfranka on this machine
mkdir -p ./polymetis/build
cd ./polymetis/build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
cd ../..

# inside the project root
pip install -e ./polymetis

Polymetis: A real-time PyTorch controller manager

Write PyTorch controllers for robots, test them in simulation, and seamlessly transfer to real-time hardware.

Polymetis powers robotics research at Facebook AI Research. If you want to write your robot policies in PyTorch for simulation and immediately transfer them to high-frequency (1kHz) policies on real-time hardware (e.g. Franka Panda), read on!

Features

  • Unified simulation & hardware interface: Write all your robot controllers just once -- immediately transfer them to real-time hardware. You can even train neural network policies using reinforcement learning in simulation and transfer them to hardware, with just a single configuration toggle.
  • Write your own robot controllers: Use the building blocks in our TorchControl library to write complex robot controllers, including operational space control. Take advantage of our wrapping of the Pinocchio dynamics library for your robot dynamics.
  • Drop-in replacement for PyRobot: If you're already using PyRobot, you can use the exact same interface, but immediately gain access to arbitrary, custom high-frequency robot controllers.

Get started

To get started, you only need one line:

conda install -c pytorch -c fair-robotics -c aihabitat -c conda-forge polymetis

You can immediately start running the example scripts in both simulation and hardware. See installation and usage documentation for details.

Documentation

All documentation on the website. Includes:

Benchmarking

To run benchmarking, first configure the script to point to your hardware instance, then run

asv run --python=python --set-commit-hash $(git rev-parse HEAD)

To update the dashboard, run:

asv publish

Commit the result under .asv/results and docs/; it will show up under the benchmarking page in the documentation.

Citing

If you use Polymetis in your research, please use the following BibTeX entry.

@misc{Polymetis2021,
  author =       {Lin, Yixin and Wang, Austin S. and Sutanto, Giovanni and Rai, Akshara and Meier, Franziska},
  title =        {Polymetis},
  howpublished = {\url{https://facebookresearch.github.io/fairo/polymetis/}},
  year =         {2021}
}

Note: Giovanni Sutanto contributed to the repository during his research internship at Facebook Artificial Intelligence Research (FAIR) in Fall 2019.

Contributing

See the CONTRIBUTING file for how to help out. Make an issue for bugs and feature requests, or contribute a new robot controller by making a pull request!

License

Polymetis is MIT licensed, as found in the LICENSE file.

About

License:MIT License


Languages

Language:Python 62.0%Language:C++ 27.1%Language:C 3.2%Language:Shell 2.8%Language:MATLAB 2.7%Language:CMake 1.7%Language:Dockerfile 0.4%Language:Starlark 0.1%Language:Makefile 0.1%