Spaces:
Runtime error
Runtime error
| # job name | |
| #SBATCH -J demo2 | |
| # partition | |
| #SBATCH -p 3090-gcondo --gres=gpu:1 | |
| ##SBATCH --partition=ssrinath-gcondo --gres=gpu:1 --gres-flags=enforce-binding | |
| ##SBATCH --account=ssrinath-gcondo | |
| # ensures all allocated cores are on the same node | |
| #SBATCH -N 1 | |
| # cpu cores | |
| #SBATCH --ntasks-per-node=4 | |
| # memory per node | |
| #SBATCH --mem=32G | |
| # runtime | |
| #SBATCH -t 240:00:00 | |
| # output | |
| #SBATCH -o out/demo2.out | |
| # error | |
| #SBATCH -e err/demo2.err | |
| # email notifiaction | |
| # SBATCH --mail-type=ALL | |
| module load miniconda3/23.11.0s | |
| source /oscar/runtime/software/external/miniconda3/23.11.0/etc/profile.d/conda.sh | |
| conda activate handdiff | |
| cd $HOME/hdd/FoundHand_demo | |
| echo Directory is `pwd` | |
| python -u app.py --not_hf --model_epoch 6 |