Apply suggestions from code review
Co-authored-by: RobinMeersman <77965843+RobinMeersman@users.noreply.github.com> Co-authored-by: Tibo De Peuter <tibo.depeuter@telenet.be>
This commit is contained in:
parent
849581fcfd
commit
2d43f5e642
3 changed files with 6 additions and 9 deletions
|
|
@ -34,19 +34,19 @@ uv sync --frozen
|
|||
example command:
|
||||
|
||||
```bash
|
||||
uv run python src/train.py
|
||||
uv run python scripts/train.py
|
||||
```
|
||||
|
||||
Or use a custom config file:
|
||||
|
||||
```bash
|
||||
uv run python src/train.py --config configs/my_experiment.yaml
|
||||
uv run python scripts/train.py --config configs/my_experiment.yaml
|
||||
```
|
||||
|
||||
Override specific parameters:
|
||||
|
||||
```bash
|
||||
uv run python src/train.py --learning-rate 0.001 --num-envs 32 --track
|
||||
uv run python scripts/train.py --learning-rate 0.001 --num-envs 32 --track
|
||||
```
|
||||
|
||||
### Logging
|
||||
|
|
|
|||
Reference in a new issue