Vaani-Audio2Img-LDM / Vaani /SLURM_test.sh
alpha31476's picture
LDM-train-pass, checking results
87ef7b5 verified
raw
history blame contribute delete
639 Bytes
#!/bin/bash -x
#SBATCH -N 1
#SBATCH --ntasks-per-node=48
#SBATCH --mem 128G
#SBATCH -t 01:00:00
#SBATCH -J ASHISH_test_cpu
#SBATCH -o %j.out # name of stdout output file(--output)
#SBATCH -e %j.err # name of stderr error file(--error)
cd $SLURM_WORKDIR
module purge
module load miniconda # load the module and environment
source /home/apps/miniconda3/etc/profile.d/conda.sh
conda env list
conda activate aku_env # load working environment
python /home/IITB/ai-at-ieor/23m1521/ashish/MTP/Vaani/image_data_metadata.py # run python script
conda deactivate # deactivate environment
# end of script