Skip to content

Commit

Permalink
Use default port
Browse files Browse the repository at this point in the history
  • Loading branch information
metinc committed Nov 27, 2023
1 parent 14f48c0 commit 5f3235c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/TRAINING_STATISTICS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
Godot RL Agents uses [Tensorboard](https://www.tensorflow.org/tensorboard) to log training statistics. You can start Tensorboard by running the following command:

```bash
tensorboard --logdir ./logs/[RL_FRAMEWORK] -p 7000
tensorboard --logdir ./logs/[RL_FRAMEWORK]
```

where `[RL_FRAMEWORK]` is one of `sb3`, `sf`, `cleanrl` or `rllib`, depending which RL framework you are using.

To view the training statistics visit [http://localhost:7000](http://localhost:7000) in your browser.
To view the training statistics visit [http://localhost:6006](http://localhost:6006) in your browser.

You can specify a different log directory and experiment name during traing with the `--experiment_dir` and `--experiment_name` option. e.g.

You can specify a different log directory and experiment name during traing with the `--experiment_dir` and `--experiment_name` option. e.g.
``` bash
```bash
gdrl --trainer=sf --env=gdrl --env_path=examples/godot_rl_<ENV_NAME>/bin/<ENV_NAME>.x86_64 --experiment_name=MyExperiment_01 --experiment_dir=logs/MyDir
```
```

0 comments on commit 5f3235c

Please sign in to comment.