-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (22 loc) · 750 Bytes
/
__init__.py
File metadata and controls
26 lines (22 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from stable_baselines.a2c import A2C
from stable_baselines.acer import ACER
from stable_baselines.acktr import ACKTR
from stable_baselines.deepq import DQN
from stable_baselines.deepq_kpi import DQN
from stable_baselines.deepq_hpi import DQN
from stable_baselines.her import HER
from stable_baselines.ppo2 import PPO2
from stable_baselines.td3 import TD3
from stable_baselines.sac import SAC
# Load mpi4py-dependent algorithms only if mpi is installed.
try:
import mpi4py
except ImportError:
mpi4py = None
if mpi4py is not None:
from stable_baselines.ddpg import DDPG
from stable_baselines.gail import GAIL
from stable_baselines.ppo1 import PPO1
from stable_baselines.trpo_kpi import TRPO
del mpi4py
__version__ = "2.7.0"