-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPPO_Jumper.py
More file actions
35 lines (18 loc) · 803 Bytes
/
PPO_Jumper.py
File metadata and controls
35 lines (18 loc) · 803 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
27
28
29
30
31
32
33
34
35
import PPO_ProcgenGame
env_name = 'procgen-jumper-v0'
def test(config, path):
PPO_ProcgenGame.test(config, path, env_name)
def run_baseline(config, trial):
PPO_ProcgenGame.run_baseline(config, trial, env_name)
def run_rnd_model(config, trial):
PPO_ProcgenGame.run_rnd_model(config, trial, env_name)
def run_qrnd_model(config, trial):
PPO_ProcgenGame.run_qrnd_model(config, trial, env_name)
def run_forward_model(config, trial):
PPO_ProcgenGame.run_forward_model(config, trial, env_name)
def run_fwd_model(config, trial):
PPO_ProcgenGame.run_fwd_model(config, trial, env_name)
def run_icm_model(config, trial):
PPO_ProcgenGame.run_icm_model(config, trial, env_name)
def run_cnd_model(config, trial):
PPO_ProcgenGame.run_cnd_model(config, trial, env_name)