1
Fork 0

fix(PR comments): removed debug level logging + moved simulate shell script from root to scripts directory

This commit is contained in:
Robin Meersman 2026-05-11 11:23:11 +02:00
parent 699f435cf5
commit 05138bb7dd
2 changed files with 3 additions and 4 deletions

9
scripts/simulate.sh Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
path=$1
uv run simulate.py \
simulation.model_path="$path"/final_model.flax \
simulation.record_video=True \
simulation.video_output_path=../vids/simulation.mp4 \
simulation.max_steps=10000

View file

@ -42,7 +42,6 @@ def main(dict_cfg: DictConfig):
base_dir=os.path.dirname(run_dir),
)
logger = get_logger()
logger.set_level(logging.DEBUG)
logger.info(f"Hydra-initialized run: {run_name}")
logger.info(f"Output directory: {run_dir}")