Skip to content

Instantly share code, notes, and snippets.

@palikar
Created December 16, 2019 16:14
Show Gist options
  • Save palikar/3175e18aa33bf3d92cc8ecee5c295890 to your computer and use it in GitHub Desktop.
Save palikar/3175e18aa33bf3d92cc8ecee5c295890 to your computer and use it in GitHub Desktop.
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --cpus-per-task=8
#SBATCH --time=5:00:00
#SBATCH --mem=16gb
#SBATCH --partition=visu
cd $(ws_find arnaud)
cd code/flow_pred/
module load devel/cuda/10.1
MASK="" EPOCHS=40 CUDA_VISIBLE_DEVICES=0 ./train_models.sh --unet -c -n 32 -l 5 -p -np -m 5
MASK="" EPOCHS=40 CUDA_VISIBLE_DEVICES=1 ./train_models.sh --unet -c -n 32 -l 5 -p -np -m 5
MASK="" EPOCHS=40 CUDA_VISIBLE_DEVICES=2 ./train_models.sh --unet -c -n 32 -l 5 -p -np -m 5
MASK="" EPOCHS=40 CUDA_VISIBLE_DEVICES=3 ./train_models.sh --unet -c -n 32 -l 5 -p -np -m 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment