Select Git revision
vocabulary_run.sbatch
vocabulary_run.sbatch 891 B
#!/bin/bash
#SBATCH -t 5-00:00:00 # time limit set to 10 minutes, 1 day: 1-00:00:00
#SBATCH --mem=1G # reserve 1GB of memory
#SBATCH -J Load_Vocabulary # the job name
#SBATCH --mail-type=END,FAIL,TIME_LIMIT # send notification emails
#SBATCH -n 5 # use 5 tasks
#SBATCH --cpus-per-task=1 # use 1 thread per task
#SBATCH -N 1 # request slots on 1 node
#SBATCH --output=/scratch/grzonkow/vocabulary_latest.txt # capture output
#SBATCH --error=/scratch/grzonkow/err_latest.txt # and error streams
module load anaconda3/latest
. $ANACONDA_HOME/etc/profile.d/conda.sh
conda activate danceformer
#pip install -r requirements.txt
#pip install simfile
python load_vocab.py --processes $SLURM_NTASKS --threads $SLURM_CPUS_PER_TASK "$@"
conda deactivate