diff --git a/.gitignore b/.gitignore index 79b1594..b0567ce 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,6 @@ artifacts/* runs/* wandb/ -# Experiment tracking -wandb/ - # Python-generated files __pycache__/ *.py[oc] diff --git a/README.md b/README.md index 19c994d..e6e5e78 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/configs/README.md b/configs/README.md index c1662fb..58c6aed 100644 --- a/configs/README.md +++ b/configs/README.md @@ -4,15 +4,15 @@ This directory contains configuration files for training experiments. ## Usage -Use `--config` with `src/train.py` to run an experiment: +Use `--config` with `scripts/train.py` to run an experiment: ```bash -python src/train.py --config configs/default_ppo.yaml +python scripts/train.py --config configs/default_ppo.yaml ``` You can overriding settings via CLI: ```bash -python src/train.py --config configs/default_ppo.yaml --learning-rate 0.001 +python scripts/train.py --config configs/default_ppo.yaml --learning-rate 0.001 ``` ## Available Configurations