Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Dipam Chakraborty
neurips-2020-procgen-competition
Commits
eb956d0f
Commit
eb956d0f
authored
Oct 30, 2020
by
Dipam Chakraborty
Browse files
vf coeff linear sched increase
parent
19f6ab29
Changes
2
Show whitespace changes
Inline
Side-by-side
algorithms/registry.py
View file @
eb956d0f
...
...
@@ -33,11 +33,18 @@ def _import_custom_torch_ppg():
from
.custom_ppg.ppg
import
PPGTrainer
return
PPGTrainer
def
_import_ppo_experimental
():
from
.ppo_experimental.ppo
import
PPOTrainer
return
PPOTrainer
CUSTOM_ALGORITHMS
=
{
"custom/CustomRandomAgent"
:
_import_custom_random_agent
,
"RandomPolicy"
:
_import_random_policy
,
"CustomPPOAgent"
:
_import_custom_ppo_agent
,
"CustomTorchPPOAgent"
:
_import_custom_torch_agent
,
"CustomTorchPPGAgent"
:
_import_custom_torch_ppg
"CustomTorchPPGAgent"
:
_import_custom_torch_ppg
,
"PPOExperimental"
:
_import_ppo_experimental
,
}
run.sh
View file @
eb956d0f
...
...
@@ -7,7 +7,8 @@ set -e
# export EXPERIMENT_DEFAULT="experiments/impala-baseline.yaml"
# export EXPERIMENT_DEFAULT="experiments/custom-torch-ppo.yaml"
export
EXPERIMENT_DEFAULT
=
"experiments/custom-ppg.yaml"
# export EXPERIMENT_DEFAULT="experiments/custom-ppg.yaml"
export
EXPERIMENT_DEFAULT
=
"experiments/ppo-experimental.yaml"
export
EXPERIMENT
=
${
EXPERIMENT
:-
$EXPERIMENT_DEFAULT
}
if
[[
-z
$AICROWD_IS_GRADING
]]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment