Skip to content

Commit

Permalink
Fix bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
roydenwa committed Nov 27, 2024
1 parent a9f0bc2 commit e211f4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ run() {
model="$1" \
datamodule.batch_size=$BATCH_SIZE \
datamodule=h5_womd \
loggers.wandb.name='train_red_motion_${now:%Y-%m-%d-%H-%M-%S}' \
loggers.wandb.name='train_'$1'_${now:%Y-%m-%d-%H-%M-%S}' \
loggers.wandb.project=$WANDB_PROJECT \
loggers.wandb.entity=$WANDB_ENTITY \
+loggers.wandb.offline=True \
datamodule.data_dir=$DATASET_DIR \
hydra.run.dir='${HYDRA_RUN_DIR}/${now:%Y-%m-%d}/${now:%H-%M-%S}'
hydra.run.dir=$HYDRA_RUN_DIR'/${now:%Y-%m-%d}/${now:%H-%M-%S}'
}

run $1

0 comments on commit e211f4e

Please sign in to comment.