0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Mac に Open AI Gymをインストールしてサンプルコードを動かす.

Last updated at Posted at 2019-04-17

強化学習の勉強をしたかったので,自分のMacにOpen AI Gymをインストールしてサンプルを動かしました.

インストール自体は簡単でpipでインストールできます.
以下では必要最低限のものをインストールしています.

pip install gym  

もしくは,

pip3 install gym  

インストールできたら,公式リファレンスにあるサンプルコードを実行してみます.

cartpole.py
import gym   
env = gym.make('CartPole-v0')  
env.reset()  
for _ in range(1000):  
    env.render()  
    env.step(env.action_space.sample()) # take a random action  
env.close()  

上記のコードはランダムに行動を選択するコードです.

python cartpole.py  

もしくは

python3 cartpole.py  

すると,画面中央でゲームが実行されました.

Screen Shot 2019-04-17 at 22.59.06.png

参考文献

Getting Started with Gym

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?