質問編集履歴

1

import を追加

2021/02/18 23:26

投稿

teefpc
teefpc

スコア112

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,18 @@
3
3
 
4
4
 
5
5
  ```Python
6
+
7
+ # Google Colab
8
+
9
+ %tensorflow_version 1.x
10
+
11
+ !pip install stable-baselines[mpi]==2.10.0
12
+
13
+ from stable_baselines.common.vec_env import DummyVecEnv
14
+
15
+ import gym
16
+
17
+
6
18
 
7
19
  N_ENV = 16 # 環境の数
8
20