dm_control suite for OpenAI Gym env
Project description
Introduction
I simplified martinseilair's dm_control2gym
as well as made it compatible with the latest MuJoCo
library(e.g., 2.0.0). .... yeah,, I will upload the documents when I have time.
Installation
$ pip install dm_control2gym
Dependencies
- Please check the
requirements.txt
or justpip install -r requirements.txt
Usage
-
MDP tasks:
env
returns a state of a robot at each time-stepimport itertools from dm_control2gym.util import make_dm2gym_env_state env = make_dm2gym_env_state(env_name="cheetah_run") state = env.reset() print("State shape: ", state.shape) total_reward = 0 for t in itertools.count(): action = env.action_space.sample() state, reward, done, _ = env.step(action) total_reward += reward if done: break env.close() print("Total Reward: {}".format(total_reward))
-
POMDP tasks:
env
returns a raw image observation at each time-stepimport itertools from dm_control2gym.util import make_dm2gym_env_obs from dm_control2gym.recorder import Monitor env = make_dm2gym_env_obs(env_name="cheetah_run", num_repeat_action=1) env = Monitor(env=env, directory="./log", force=True) obs = env.reset() print("Obs shape: ", obs.shape) total_reward = 0 env.record_start() env.reset() for t in itertools.count(): action = env.action_space.sample() obs, reward, done, _ = env.step(action) total_reward += reward if done: break env.record_end() env.close() print("Total Reward: {}".format(total_reward))
Videos
For more details
Please refer to martinseilair's dm_control2gym
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file dm_control2gym-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: dm_control2gym-0.0.2-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 660b2283ce7ac711e3e2cabedce6268ebe9b943a66f0992bc5e4a0a645bf780e |
|
MD5 | e023a6dcb5bc786b6824304a7c06dd1e |
|
BLAKE2b-256 | d9ec011281a336be31f4f16f1a6f6311da306b2b3960ac05c103ca09b20f1f51 |