-
Notifications
You must be signed in to change notification settings - Fork 0
/
PPO_PrivateEye.py
39 lines (20 loc) · 933 Bytes
/
PPO_PrivateEye.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
import PPO_HardAtariGame
env_name = 'PrivateEyeNoFrameskip-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_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_cnd_model(config, trial):
PPO_HardAtariGame.run_cnd_model(config, trial, env_name)
def run_icm_model(config, trial):
PPO_HardAtariGame.run_icm_model(config, trial, env_name)
def run_fed_ref_model(config, trial):
PPO_HardAtariGame.run_fed_ref_model(config, trial, env_name)