All Projects → angelolovatto → gym-cartpole-swingup

angelolovatto / gym-cartpole-swingup

Licence: GPL-3.0 license
A simple, continuous-control environment for OpenAI Gym

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to gym-cartpole-swingup

modelicagym
Modelica models integration with Open AI Gym
Stars: ✭ 53 (+165%)
Mutual labels:  openai-gym, reinforcement-learning-environments
bark-ml
Gym environments and agents for autonomous driving.
Stars: ✭ 68 (+240%)
Mutual labels:  openai-gym, reinforcement-learning-environments
robo-gym-robot-servers
Repository containing Robot Servers ROS packages
Stars: ✭ 25 (+25%)
Mutual labels:  openai-gym, reinforcement-learning-environments
gym-hybrid
Collection of OpenAI parametrized action-space environments.
Stars: ✭ 26 (+30%)
Mutual labels:  openai-gym, reinforcement-learning-environments
mario
Super Mario Reinforcement Learning from Demonstration
Stars: ✭ 25 (+25%)
Mutual labels:  openai-gym
realant
RealAnt robot platform for low-cost, real-world reinforcement learning
Stars: ✭ 40 (+100%)
Mutual labels:  reinforcement-learning-environments
rlberry
An easy-to-use reinforcement learning library for research and education.
Stars: ✭ 124 (+520%)
Mutual labels:  reinforcement-learning-environments
awesome-isaac-gym
A curated list of awesome NVIDIA Issac Gym frameworks, papers, software, and resources
Stars: ✭ 373 (+1765%)
Mutual labels:  openai-gym
iroko
A platform to test reinforcement learning policies in the datacenter setting.
Stars: ✭ 55 (+175%)
Mutual labels:  openai-gym
deep rl acrobot
TensorFlow A2C to solve Acrobot, with synchronized parallel environments
Stars: ✭ 32 (+60%)
Mutual labels:  openai-gym
gym-rs
OpenAI's Gym written in pure Rust for blazingly fast performance
Stars: ✭ 34 (+70%)
Mutual labels:  openai-gym
RLGC
An open-source platform for applying Reinforcement Learning for Grid Control (RLGC)
Stars: ✭ 85 (+325%)
Mutual labels:  openai-gym
ddp-gym
Differential Dynamic Programming controller operating in OpenAI Gym environment.
Stars: ✭ 70 (+250%)
Mutual labels:  openai-gym
OpenAI-Gym-Hearts
OpenAI Gym Hearts Card Game
Stars: ✭ 21 (+5%)
Mutual labels:  openai-gym
ZeroSimROSUnity
Robotic simulation in Unity with ROS integration.
Stars: ✭ 112 (+460%)
Mutual labels:  reinforcement-learning-environments
yarll
Combining deep learning and reinforcement learning.
Stars: ✭ 84 (+320%)
Mutual labels:  openai-gym
gym-mtsim
A general-purpose, flexible, and easy-to-use simulator alongside an OpenAI Gym trading environment for MetaTrader 5 trading platform (Approved by OpenAI Gym)
Stars: ✭ 196 (+880%)
Mutual labels:  openai-gym
deep-rl-docker
Docker image with OpenAI Gym, Baselines, MuJoCo and Roboschool, utilizing TensorFlow and JupyterLab.
Stars: ✭ 44 (+120%)
Mutual labels:  openai-gym
Deep-Reinforcement-Learning-With-Python
Master classic RL, deep RL, distributional RL, inverse RL, and more using OpenAI Gym and TensorFlow with extensive Math
Stars: ✭ 222 (+1010%)
Mutual labels:  openai-gym
a3c-super-mario-pytorch
Reinforcement Learning for Super Mario Bros using A3C on GPU
Stars: ✭ 35 (+75%)
Mutual labels:  openai-gym

PyPI

gym-cartpole-swingup

A simple, continuous-control environment for OpenAI Gym

Installation

pip install gym-cartpole-swingup

Usage example

# coding: utf-8
import gym
import gym_cartpole_swingup

# Could be one of:
# CartPoleSwingUp-v0, CartPoleSwingUp-v1
# If you have PyTorch installed:
# TorchCartPoleSwingUp-v0, TorchCartPoleSwingUp-v1
env = gym.make("CartPoleSwingUp-v0")
done = False

while not done:
    action = env.action_space.sample()
    obs, rew, done, info = env.step(action)
    env.render()

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].