A toolkit for Reinforcement Learning using ROS and Gazebo

hi, very cool, but why/for-what do you use openai.gym ? Do you know http://wiki.ros.org/reinforcement_learning

hi @flobotics

Given the recent popularity of the OpenAI gym, we’ve used the gym to facilitate a common interface for RL problems in robotics. That is, to have the AI people (that don’t necessarily know about ROS) focus on the ai problems.

Do you have code for this ? I am trying to use Gazebo for reinforcement learning to do hand object grasping with DQN. It would be great if you can share how you coded binding Gazebo and open AI Gym

If I’m not wrong, the friends of Erle have the code in github: GitHub - erlerobot/gym-gazebo: Refer to https://github.com/AcutronicRobotics/gym-gazebo2 for the new version

2 Likes

Thank you very much. This is really helpful.

I would strongly recommend looking into DDPG, TRPO, A3C, or FAN for a grasping task. DQN doesn’t perform well for robotics tasks due to its discrete action space and poor data efficiency.

@Random-Word, that’s interesting, thanks for sharing.
Can you point out any benchmark or results that compares DQN with these different techniques? A pointer to a paper would also do.

hi @spk921, that sounds interresting. I build a robotic humanoid hand (Robotic Humanoid hand) and i am also interrested into building a ai-software for hand grasping. Do you have already any code and where? thanks

No I am working on it. And I was not able to find some related work. I don’t have a code yet.

Thank you for your idea.

@Random-Word What is FAN stands for? Could you point out links or full name of FAN?

perhaps your interested as start in code https://github.com/flobotics/flobotics_tensorflow_controller . Its a ROS node with tensorflow. The code projects the angle of a phalanx into a picture and then feeds a DQN.

Sure, here are some references and reading material.

A benchmark that sadly doesn’t include DQN, but does include TRPO and DDPG:

DDPG:

Asynchronous RL learning showing improved performance of asynchronous actor critic over asynchronous Q learning.

@spk921 Apologies, it’s NAF not FAN. It was designed for robotic manipulation and outperforms DDPG. Paper is here:

1 Like

Hi Victor,

is your code connecting ROS/Gazebo to OpenAI gym easy to extend to other robots and tasks? I would like to use the openAI interface with a Robotis Mini robot that I am simulating in Gazebo.

Thanks!

–roberto

Also, I saw this other project: https://github.com/openai/rosbridge
Did you know about it?

For those interested, a follow up work on this topic that will be presented at ROSCon this year:

Accelerated robot training through simulation in the cloud with ROS and Gazebo
Rather than programming, training allows robots to achieve behaviors that generalize better and are capable to respond to real-world needs. However, such training requires a big amount of experimentation which is not always feasible for a physical robot. In this work, we present robot_gym, a framework to accelerate robot training through simulation in the cloud that makes use of roboticists’ tools, simplifying the development and deployment processes on real robots. We unveil that, for simple tasks, simple 3DoF robots require more than 140 attempts to learn. For more complex, 6DoF robots, the number of attempts increases to more than 900 for the same task. We demonstrate that our framework, for simple tasks, accelerates the robot training time by more than 33% while maintaining similar levels of accuracy and repeatability.

Full article available at https://arxiv.org/pdf/1808.10369.pdf.

3 Likes

That training speed up sounds very interesting.
I tried searching for the framework but couldn’t find it tho, is it published yet?

Hello @MohmadAyman,

The proposal of the paper named “robot_gym” is built upon gym_gazebo. There’re no plans to release our particular setup (which is what’s discussed in this paper).

If you’re interested, you should be able to reproduce such setup yourself using gym-gazebo and customize it to your needs. There’re some community contributions that will facilitate the process.

1 Like

Hi Victor,
does your presentation have any relation with the ROS package openai_ros or is it something different?

No relationship. My colleagues will be speaking about a totally different package @Daisuke: https://github.com/erlerobot/gym-gazebo.