Skip to content

Commit

Permalink
Merge pull request #131 from edbeeching/experiment-name-typo-correction
Browse files Browse the repository at this point in the history
Experiment name small typo correction
Ivan-267 authored Jul 17, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents cfa756c + 751df76 commit 4d2a815
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/clean_rl_example.py
Original file line number Diff line number Diff line change
@@ -18,9 +18,9 @@ def parse_args():
# fmt: off
parser = argparse.ArgumentParser()
parser.add_argument("--experiment_dir", default="logs/cleanrl", type=str,
help="The name of the the experiment directory, in which the tensorboard logs are getting stored")
help="The name of the experiment directory, in which the tensorboard logs are getting stored")
parser.add_argument("--experiment_name", default=os.path.basename(__file__).rstrip(".py"), type=str,
help="The name of the the experiment, which will be displayed in tensborboard")
help="The name of the experiment, which will be displayed in tensorboard")
parser.add_argument("--seed", type=int, default=1,
help="seed of the experiment")
parser.add_argument("--torch-deterministic", type=lambda x: bool(strtobool(x)), default=True, nargs="?", const=True,
4 changes: 2 additions & 2 deletions examples/stable_baselines3_example.py
Original file line number Diff line number Diff line change
@@ -21,13 +21,13 @@
"--experiment_dir",
default="logs/sb3",
type=str,
help="The name of the the experiment directory, in which the tensorboard logs are getting stored",
help="The name of the experiment directory, in which the tensorboard logs are getting stored",
)
parser.add_argument(
"--experiment_name",
default="Experiment",
type=str,
help="The name of the the experiment, which will be displayed in tensborboard",
help="The name of the experiment, which will be displayed in tensorboard",
)
parser.add_argument(
"--onnx_export_path",
4 changes: 2 additions & 2 deletions godot_rl/wrappers/sample_factory_wrapper.py
Original file line number Diff line number Diff line change
@@ -168,13 +168,13 @@ def add_gdrl_env_args(_env, p: argparse.ArgumentParser, evaluation=False):
"--experiment_dir",
default="logs/sf",
type=str,
help="The name of the the experiment directory, in which the tensorboard logs are getting stored",
help="The name of the experiment directory, in which the tensorboard logs are getting stored",
)
p.add_argument(
"--experiment_name",
default=None,
type=str,
help="The name of the the experiment, which will be displayed in tensborboard",
help="The name of the experiment, which will be displayed in tensorboard",
)


0 comments on commit 4d2a815

Please sign in to comment.