Created
June 1, 2020 20:07
-
-
Save vincentqb/3650c55f4e780111c3ae0d8588483763 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| #SBATCH --job-name=torchaudiomodel | |
| #SBATCH --output=/checkpoint/%u/jobs/audio-%j.out | |
| #SBATCH --error=/checkpoint/%u/jobs/audio-%j.err | |
| #SBATCH --signal=USR1@600 | |
| #SBATCH --open-mode=append | |
| #SBATCH --partition=learnfair | |
| #SBATCH --time=4320 | |
| #SBATCH --mem-per-cpu=5120 | |
| #SBATCH --nodes=1 | |
| #SBATCH --ntasks-per-node=1 | |
| #SBATCH --gres=gpu:8 | |
| #SBATCH --cpus-per-task=80 | |
| srun --label \ | |
| python /private/home/vincentqb/experiment/PipelineTrain.py |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is based on this. Run with
sbatch run.sh, as described in pytorch/audio#632.