mirror of
https://github.com/wassname/Run-Skeleton-Run.git
synced 2026-06-27 18:21:58 +08:00
13 lines
214 B
Python
13 lines
214 B
Python
import numpy as np
|
|
import gym
|
|
from gym.spaces import Box
|
|
import sys
|
|
|
|
from common.state_transform import StateVelCentr
|
|
|
|
|
|
def create_env(args):
|
|
# env = Pendulum()
|
|
env = gym.make('Pendulum-v0')
|
|
return env
|