1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 11:40:18 +01:00

remove -ept flag (#283)

This commit is contained in:
shadiendrawis
2019-04-03 16:32:24 +03:00
committed by GitHub
parent a543f10c1a
commit 0b808f0794
2 changed files with 0 additions and 9 deletions

View File

@@ -512,14 +512,6 @@ class CoachLauncher(object):
help="(string) Choose an environment type class to override on top of the selected preset.", help="(string) Choose an environment type class to override on top of the selected preset.",
default=None, default=None,
type=str) type=str)
parser.add_argument('-ept', '--exploration_policy_type',
help="(string) Choose an exploration policy type class to override on top of the selected "
"preset."
"If no preset is defined, a preset can be set from the command-line by combining settings "
"which are set by using --agent_type, --experiment_type, --environemnt_type"
,
default=None,
type=str)
parser.add_argument('-lvl', '--level', parser.add_argument('-lvl', '--level',
help="(string) Choose the level that will be played in the environment that was selected." help="(string) Choose the level that will be played in the environment that was selected."
"This value will override the level parameter in the environment class." "This value will override the level parameter in the environment class."

View File

@@ -32,7 +32,6 @@ class Definitions:
css = "checkpoint_save_secs" css = "checkpoint_save_secs"
crd = "checkpoint_restore_dir" crd = "checkpoint_restore_dir"
et = "environment_type" et = "environment_type"
ept = "exploration_policy_type"
cp = "custom_parameter" cp = "custom_parameter"
seed = "seed" seed = "seed"
dccp = "distributed_coach_config_path" dccp = "distributed_coach_config_path"