diff --git a/examples/clean_rl_example.py b/examples/clean_rl_example.py index 0136c91d..09b6f572 100644 --- a/examples/clean_rl_example.py +++ b/examples/clean_rl_example.py @@ -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, diff --git a/examples/stable_baselines3_example.py b/examples/stable_baselines3_example.py index 92b043e1..d13a85b9 100644 --- a/examples/stable_baselines3_example.py +++ b/examples/stable_baselines3_example.py @@ -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", diff --git a/godot_rl/wrappers/sample_factory_wrapper.py b/godot_rl/wrappers/sample_factory_wrapper.py index e81cccaf..7b0eb20e 100644 --- a/godot_rl/wrappers/sample_factory_wrapper.py +++ b/godot_rl/wrappers/sample_factory_wrapper.py @@ -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", )