CartPole-v0
OpenAI Gym( https://gym.openai.com/ )での観察の仕様が知りたいです。
たとえば、次のコードではobservation
. 1つの観察は[-0.061586 -0.75893141 0.05793238 1.15547541]
、数字が何を意味するのか知りたいというようなものです。Environments
などなどMountainCar-v0
、その他の仕様が知りたいですMsPacman-v0
。
https://github.com/openai/gymを読んでみましたが、わかりません。仕様を知る方法を教えてください。
import gym
env = gym.make('CartPole-v0')
for i_episode in range(20):
observation = env.reset()
for t in range(100):
env.render()
print(observation)
action = env.action_space.sample()
observation, reward, done, info = env.step(action)
if done:
print("Episode finished after {} timesteps".format(t+1))
break
( https://gym.openai.com/docsより)
出力は次のとおりです
[-0.061586 -0.75893141 0.05793238 1.15547541]
[-0.07676463 -0.95475889 0.08104189 1.46574644]
[-0.0958598 -1.15077434 0.11035682 1.78260485]
[-0.11887529 -0.95705275 0.14600892 1.5261692 ]
[-0.13801635 -0.7639636 0.1765323 1.28239155]
[-0.15329562 -0.57147373 0.20218013 1.04977545]
Episode finished after 14 timesteps
[-0.02786724 0.00361763 -0.03938967 -0.01611184]
[-0.02779488 -0.19091794 -0.03971191 0.26388759]
[-0.03161324 0.00474768 -0.03443415 -0.04105167]