-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPO_Montezuma.py
47 lines (24 loc) · 1.11 KB
/
PPO_Montezuma.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import PPO_HardAtariGame
env_name = 'MontezumaRevengeNoFrameskip-v4'
def test(config, path):
PPO_HardAtariGame.test(config, path, env_name)
def run_baseline(config, trial):
PPO_HardAtariGame.run_baseline(config, trial, env_name)
def run_rnd_model(config, trial):
PPO_HardAtariGame.run_rnd_model(config, trial, env_name)
def run_qrnd_model(config, trial):
PPO_HardAtariGame.run_qrnd_model(config, trial, env_name)
def run_sr_rnd_model(config, trial):
PPO_HardAtariGame.run_sr_rnd_model(config, trial, env_name)
def run_cnd_model(config, trial):
PPO_HardAtariGame.run_cnd_model(config, trial, env_name)
def run_dop_model(config, trial):
PPO_HardAtariGame.run_dop_model(config, trial, env_name)
def run_fed_ref_model(config, trial):
PPO_HardAtariGame.run_fed_ref_model(config, trial, env_name)
def run_forward_model(config, trial):
PPO_HardAtariGame.run_forward_model(config, trial, env_name)
def run_fwd_model(config, trial):
PPO_HardAtariGame.run_fwd_model(config, trial, env_name)
def run_icm_model(config, trial):
PPO_HardAtariGame.run_icm_model(config, trial, env_name)