All Projects → zuoxingdong → dm2gym

zuoxingdong / dm2gym

Licence: MIT license
Convert DeepMind Control Suite to OpenAI gym environments.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to dm2gym

Deep-Reinforcement-Learning-for-Automated-Stock-Trading-Ensemble-Strategy-ICAIF-2020
Live Trading. Please star.
Stars: ✭ 1,251 (+1546.05%)
Mutual labels:  openai-gym
ddpg biped
Repository for Planar Bipedal walking robot in Gazebo environment using Deep Deterministic Policy Gradient(DDPG) using TensorFlow.
Stars: ✭ 65 (-14.47%)
Mutual labels:  openai-gym
FinRL Podracer
Cloud-native Financial Reinforcement Learning
Stars: ✭ 179 (+135.53%)
Mutual labels:  openai-gym
covid19 scenarios data
Data preprocessing scripts and preprocessed data storage for COVID-19 Scenarios project
Stars: ✭ 43 (-43.42%)
Mutual labels:  research
alchemy
Experiments logging & visualization
Stars: ✭ 49 (-35.53%)
Mutual labels:  research
starter-hugo-research-group
👥 轻松创建研究组或组织网站 Easily create a stunning Research Group, Team, or Business Website with no-code
Stars: ✭ 148 (+94.74%)
Mutual labels:  research
SOMns
SOMns: A Newspeak for Concurrency Research
Stars: ✭ 62 (-18.42%)
Mutual labels:  research
sc2gym
PySC2 OpenAI Gym Environments
Stars: ✭ 50 (-34.21%)
Mutual labels:  openai-gym
modelicagym
Modelica models integration with Open AI Gym
Stars: ✭ 53 (-30.26%)
Mutual labels:  openai-gym
day2night
Image2Image Translation Research
Stars: ✭ 46 (-39.47%)
Mutual labels:  research
gym-tetris
An OpenAI Gym interface to Tetris on the NES.
Stars: ✭ 33 (-56.58%)
Mutual labels:  openai-gym
portfoliolab
PortfolioLab is a python library that enables traders to take advantage of the latest portfolio optimisation algorithms used by professionals in the industry.
Stars: ✭ 104 (+36.84%)
Mutual labels:  research
showstopper
ShowStopper is a tool for helping malware researchers explore and test anti-debug techniques or verify debugger plugins or other solutions that clash with standard anti-debug methods.
Stars: ✭ 132 (+73.68%)
Mutual labels:  research
NDecrypt
Cartridge encrypt/decrypt
Stars: ✭ 22 (-71.05%)
Mutual labels:  research
manifold mixup
Tensorflow implementation of the Manifold Mixup machine learning research paper
Stars: ✭ 24 (-68.42%)
Mutual labels:  research
bark-ml
Gym environments and agents for autonomous driving.
Stars: ✭ 68 (-10.53%)
Mutual labels:  openai-gym
lightning-hydra-template
PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡🔥⚡
Stars: ✭ 1,905 (+2406.58%)
Mutual labels:  research
hh research
Автоматизация поиска и исследования вакансий с сайта hh.ru (Headhunter) с помощью методов Python. Классификация данных, поиск статистических параметров.
Stars: ✭ 36 (-52.63%)
Mutual labels:  research
nllgrid
Python class for reading and writing NLLoc grid files.
Stars: ✭ 23 (-69.74%)
Mutual labels:  research
assembly improvement
Improve the quality of a denovo assembly by scaffolding and gap filling
Stars: ✭ 46 (-39.47%)
Mutual labels:  research

dm2gym: Convert DeepMind Control Suite to OpenAI gym environments.

This repository contains a lightweight wrapper to convert DeepMind Control Suite to OpenAI gym environments.

Installation

One can install directly from PyPI:

pip install dm2gym

The installation can also be done with:

git clone https://github.com/zuoxingdong/dm2gym.git
cd dm2gym
pip install -e .

Getting started

One liner to create the environment:

import gym
env = gym.make('dm2gym:CheetahRun-v0')

More examples to specify the environment:

env = gym.make('dm2gym:FishSwim-v0', environment_kwargs={'flat_observation': True})
env = gym.make('dm2gym:HopperHop-v0', visualize_reward=True)

What's new

  • 2019-10-18 (v0.2.0)

    • Sync to the latest API of DeepMind Control Suite
    • Support gym registration: create all dm_control environments via gym.make
  • 2019-04-14 (v0.1.0)

    • Initial release

Reference

Please use this bibtex if you want to cite this repository in your publications:

@misc{dm2gym,
      author = {Zuo, Xingdong},
      title = {dm2gym: Convert DeepMind Control Suite to OpenAI gym environments.},
      year = {2019},
      publisher = {GitHub},
      journal = {GitHub repository},
      howpublished = {\url{https://github.com/zuoxingdong/dm2gym}},
    }
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].