We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gymモジュールの挙動が書籍と異なります。
実行するコード
env = gym.make('CartPole-v0') state = env.reset() print(state)
出力結果: (array([-0.0473311 , 0.02710982, -0.0452505 , -0.01258285], dtype=float32), {})
タプルなので、例えばp.268のget_action()関数の一行目などエラーになると思います。
バージョンの問題などでしょうか?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gymモジュールの挙動が書籍と異なります。
実行するコード
出力結果:
(array([-0.0473311 , 0.02710982, -0.0452505 , -0.01258285], dtype=float32), {})
タプルなので、例えばp.268のget_action()関数の一行目などエラーになると思います。
バージョンの問題などでしょうか?
The text was updated successfully, but these errors were encountered: