fix(PR comments): removed debug level logging + moved simulate shell script from root to scripts directory
This commit is contained in:
parent
699f435cf5
commit
05138bb7dd
2 changed files with 3 additions and 4 deletions
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
path=$1
|
||||
|
||||
uv run scripts/simulate.py \
|
||||
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
|
||||
simulation.video_output_path=../vids/simulation.mp4 \
|
||||
simulation.max_steps=10000
|
||||
|
|
@ -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}")
|
||||
|
||||
|
|
|
|||
Reference in a new issue