Skip to content
Snippets Groups Projects
Select Git revision
  • 51b4268b79ac5b9575c96a0e5b792655167a0870
  • main default protected
  • fix_prediction_combine_tokens
  • test_difficulty
  • fix_prediction_learn_constant
  • window_spectrograms
6 results

vocabulary_run.sbatch

Blame
  • 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