All Projects → aravindr93 → Hand_dapg

aravindr93 / Hand_dapg

Licence: apache-2.0
Repository to accompany RSS 2018 paper on dexterous hand manipulation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Hand dapg

Awesome Real World Rl
Great resources for making Reinforcement Learning work in Real Life situations. Papers,projects and more.
Stars: ✭ 234 (+165.91%)
Mutual labels:  robotics, reinforcement-learning, imitation-learning, simulation
Bullet3
Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.
Stars: ✭ 8,714 (+9802.27%)
Mutual labels:  robotics, reinforcement-learning, simulation
Gym Ignition
Framework for developing OpenAI Gym robotics environments simulated with Ignition Gazebo
Stars: ✭ 97 (+10.23%)
Mutual labels:  robotics, reinforcement-learning, simulation
Pgdrive
PGDrive: an open-ended driving simulator with infinite scenes from procedural generation
Stars: ✭ 60 (-31.82%)
Mutual labels:  reinforcement-learning, imitation-learning, simulation
Ravens
Train robotic agents to learn pick and place with deep learning for vision-based manipulation in PyBullet. Transporter Nets, CoRL 2020.
Stars: ✭ 133 (+51.14%)
Mutual labels:  robotics, reinforcement-learning, imitation-learning
Articulations Robot Demo
Stars: ✭ 145 (+64.77%)
Mutual labels:  robotics, reinforcement-learning, simulation
Mjrl
Reinforcement learning algorithms for MuJoCo tasks
Stars: ✭ 162 (+84.09%)
Mutual labels:  robotics, reinforcement-learning, simulation
Gym Miniworld
Simple 3D interior simulator for RL & robotics research
Stars: ✭ 338 (+284.09%)
Mutual labels:  robotics, reinforcement-learning, simulation
Awesome Robotics
A curated list of awesome links and software libraries that are useful for robots.
Stars: ✭ 478 (+443.18%)
Mutual labels:  robotics, reinforcement-learning, simulation
Bolero
Behavior Optimization and Learning for Robots
Stars: ✭ 39 (-55.68%)
Mutual labels:  robotics, reinforcement-learning
Deterministic Gail Pytorch
PyTorch implementation of Deterministic Generative Adversarial Imitation Learning (GAIL) for Off Policy learning
Stars: ✭ 44 (-50%)
Mutual labels:  reinforcement-learning, imitation-learning
Holodeck Engine
High Fidelity Simulator for Reinforcement Learning and Robotics Research.
Stars: ✭ 48 (-45.45%)
Mutual labels:  robotics, reinforcement-learning
Gym Panda
An OpenAI Gym Env for Panda
Stars: ✭ 29 (-67.05%)
Mutual labels:  robotics, reinforcement-learning
Gym Dart
OpenAI Gym environments using DART
Stars: ✭ 20 (-77.27%)
Mutual labels:  robotics, reinforcement-learning
Gym Alttp Gridworld
A gym environment for Stuart Armstrong's model of a treacherous turn.
Stars: ✭ 14 (-84.09%)
Mutual labels:  reinforcement-learning, simulation
Plankton
Open source simulator for maritime robotics researchers
Stars: ✭ 51 (-42.05%)
Mutual labels:  robotics, simulation
Ros Academy For Beginners
中国大学MOOC《机器人操作系统入门》代码示例 ROS tutorial
Stars: ✭ 861 (+878.41%)
Mutual labels:  robotics, simulation
Sdformat
Simulation Description Format (SDFormat) parser and description files.
Stars: ✭ 51 (-42.05%)
Mutual labels:  robotics, simulation
Maze
Maze Applied Reinforcement Learning Framework
Stars: ✭ 85 (-3.41%)
Mutual labels:  reinforcement-learning, simulation
Awesome Decision Making Reinforcement Learning
A selection of state-of-the-art research materials on decision making and motion planning.
Stars: ✭ 68 (-22.73%)
Mutual labels:  robotics, reinforcement-learning

DAPG for Dexterous Hand Manipulation

This accompanies the DAPG project, presented at RSS 2018. Please see the project page for the paper and video demonstration of results.

Organization

The overall project is organized into three repositories:

  1. mjrl provides a suite of learning algorithms for various continuous control tasks simulated in MuJoCo. This includes the NPG implementation and the DAPG algorithm used in the paper.
  2. mj_envs provides a suite of continuous control tasks simulated in MuJoCo, including the dexterous hand manipulation tasks used in the paper.
  3. hand_dapg (this repository) serves as the landing page and contains the human demonstrations and pre-trained policies for the tasks.

This modular organization was chosen to allow for rapid and independent developments along different directions such as algorithms and interesting tasks, and also to facilitate sharing of results with the broader research community.

Getting started

Each repository above contains detailed setup instructions.

  1. Step 1: Install mjrl, using instructions in the repository (direct link). mjrl comes with an anaconda environment which helps to easily import and use a variety of MuJoCo tasks.
  2. Step 2: Install mj_envs by following the instructions in the repository. Note that mj_envs uses git submodules, and hence must be cloned correctly per instructions in the repo.
  3. Step 3: After setting up mjrl and mj_envs, clone this repository and use the following commands to visualize the demonstrations and pre-trained policies.
$ cd dapg
$ python utils/visualize_demos.py --env_name relocate-v0
$ python utils/visualize_policy.py --env_name relocate-v0 --policy policies/relocate-v0.pickle

NOTE: If the visualization results in a GLFW error, this is because mujoco-py does not see some graphics drivers correctly. This can usually be fixed by explicitly loading the correct drivers before running the python script. See this page for details.

Bibliography

If you use the code in this or associated repositories above, please cite the following paper.

@INPROCEEDINGS{Rajeswaran-RSS-18,
    AUTHOR    = {Aravind Rajeswaran AND Vikash Kumar AND Abhishek Gupta AND
                 Giulia Vezzani AND John Schulman AND Emanuel Todorov AND Sergey Levine},
    TITLE     = "{Learning Complex Dexterous Manipulation with Deep Reinforcement Learning and Demonstrations}",
    BOOKTITLE = {Proceedings of Robotics: Science and Systems (RSS)},
    YEAR      = {2018},
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].