Last active
October 26, 2017 16:13
-
-
Save solaris33/ae9f5a5f5a3dbec6eb6bdd4935e47cf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import gym | |
env = gym.make('CartPole-v0') | |
for i_episode in range(20): | |
# 새로운 에피소드(initial environment)를 불러온다(reset) | |
observation = env.reset() | |
for t in range(100): | |
env.render() | |
# 행동(action)을 취하기 이전에 환경에 대해 얻은 관찰값(observation) | |
print('observation before action:') | |
print(observation) | |
action = env.action_space.sample() | |
observation, reward, done, info = env.step(action) | |
# 행동(action)을 취한 이후에 환경에 대해 얻은 관찰값(observation) | |
print('observation after action:') | |
print(observation) | |
if done: | |
print("Episode finished after {} timesteps".format(t+1)) | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment