分享

基于ROS和gazebo对gym中robotics扩展

 爱因思念l5j0t8 2017-08-24

#gym-gazebo

This work presents an extension of the initial OpenAI gym for robotics using ROS and Gazebo. A whitepaper about this work is available at https:///abs/1608.05742(论文地址). Please use the following BibTex entry to cite our work:

@misc{1608.05742, Author = {Iker Zamora and Nestor Gonzalez Lopez and Victor Mayoral Vilches and Alejandro Hernandez Cordero}, Title = {Extending the OpenAI Gym for robotics: a toolkit for reinforcement learning using ROS and Gazebo}, Year = {2016}, Eprint = {arXiv:1608.05742}, }

Visit erlerobotics/gym (主页)for more information and videos.

The following are some of the available gazebo environments for the [Turtlebot]([Soccer environment]), one of the currently supported robots:

GazeboCircuit2TurtlebotLidar-v0

A simple circuit with straight tracks and 90 degree turns. Highly discretized LIDAR readings are used to train the Turtlebot. Scripts implementing Q-learning and Sarsa can be found in the examples folder.

GazeboCircuit2TurtlebotLidarNn-v0

A simple circuit with straight tracks and 90 degree turns. A LIDAR is used to train the Turtlebot. Scripts implementing DQN can be found in the examples folder.

GazeboCircuit2cTurtlebotCameraNnEnv-v0

A simple circuit with straight tracks and 90 degree turns with high contrast colors between the floor and the walls. A camera is used to train the Turtlebot. Scripts implementing DQN using CNN can be found in the examples folder.

Installation

Table of Contents

  • Docker

  • Ubuntu

    • Automatic installation

    • Step-by-step installation

    • Keras and Theano installation

    • Enablig GPU for Theano

    • Requirements

    • ROS Indigo

    • Gazebo

    • Gym Gazebo Pip

    • Dependencies

    • Usage

Docker

Build/fetch the container:

docker pull erlerobotics/gym-gazebo:latest # to fetch the container# docker build -t gym-gazebo .

Enter the container

docker run -it erlerobotics/gym-gazebo

If you wish to run examples that require plugins like cameras, create a fake screen with:

xvfb-run -s '-screen 0 1400x900x24' bash

If you have an equivalent release of Gazebo installed locally, you can connect to the gzserver inside the container using gzclient GUI by setting the address of the master URI to the containers public address.

export GAZEBO_MASTER_IP=$(sudo docker inspect --format '{{ .NetworkSettings.IPAddress }}' 'id of running container') export GAZEBO_MASTER_URI=$GAZEBO_MASTER_IP:11345 gzclient

Ubuntu

Requirements

  • Ubuntu 14.04

  • 2GB free space

ROS Indigo

Install the Robot Operating System via:

ros-indigo-desktop-full is the only recommended installation.

  • Ubuntu: http://wiki./indigo/Installation/Ubuntu

  • Others: http://wiki./indigo/Installation

Gazebo

  • Setup your computer to accept software from packages.:

sudo sh -c 'echo 'deb http://packages./gazebo/ubuntu-stable `lsb_release -cs` main' > /etc/apt/sources.list.d/gazebo-stable.list'
  • Setup keys:

wget http://packages./gazebo.key -O - | sudo apt-key add -
  • Install Gazebo:

sudo apt-get update sudo apt-get remove .*gazebo.* && sudo apt-get update && sudo apt-get install gazebo7 libgazebo7-dev

Gym Gazebo Pip

git clone https://github.com/erlerobot/gym-gazebocd gym-gazebo sudo pip install -e .

Dependencies

There are two options to install dependencies: automatic installation or step-by-step installation

Automatic installation

Install dependencies running setup.bash. If you are going to use DQN with Keras, also install Keras and Theano.

cd gym_gazebo/envs/installation bash setup.bash

Before running a environment, load the corresponding setup script. For example, to load the Turtlebot execute:

  • Turtlebot

cd gym_gazebo/envs/installation bash turtlebot_setup.bash

Step-by-step installation

Needs to be updated, use automatic installation.

Keras and Theano installation

This part of the installation is required only for the environments using DQN.

# install dependenciessudo pip install h5py sudo apt-get install gfortran# install sript specific dependencies (temporal)sudo apt-get install python-skimage# install Theanogit clone git://github.com/Theano/Theano.gitcd Theano/ sudo python setup.py develop#isntall Kerassudo pip install keras

dot_parser error fix:

sudo pip install --upgrade pydot sudo pip install --upgrade pyparsing

Enablig GPU for Theano

Follow the instructions here and change $PATH instead of $CUDA_ROOT.

Working on a clean installation of Ubuntu 14.04 using CUDA 7.5.

The following flags are needed in order to execute in GPU mode, using an alias is recommended.

THEANO_FLAGS=mode=FAST_RUN,device=gpu,floatX=float32

Usage

Build and install gym-gazebo

In the root directory of the repository:

sudo pip install -e .

Running an environment

  • Load the environment variables corresponding to the robot you want to launch. E.g. to load the Turtlebot:

cd gym_gazebo/envs/installation bash turtlebot_setup.bash

Note: all the setup scripts are available in gym_gazebo/envs/installation

  • Run any of the examples available in examples/. E.g.:

cd examples/scripts_turtlebot python circuit2_turtlebot_lidar_qlearn.py

Display the simulation

To see what's going on in Gazebo during a simulation, simply run gazebo client:

gzclient

Display reward plot

Display a graph showing the current reward history by running the following script:

cd examples/utilities python display_plot.py

HINT: use --help flag for more options.

Killing background processes

Sometimes, after ending or killing the simulation gzserver and rosmaster stay on the background, make sure you end them before starting new tests.

We recommend creating an alias to kill those processes.

echo 'alias k='killall -9 gzserver gzclient roslaunch rosmaster'' >> ~/.bashrc


    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多