-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblend-14.sh
36 lines (33 loc) · 1.13 KB
/
blend-14.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
#SBATCH --job-name=blend-14
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=4
#SBATCH --mem=16GB
#SBATCH --time=167:00:00
#SBATCH --mail-type=END
#SBATCH --mail-user=yw3642@nyu.edu
#SBATCH --output=log/%x-%A.out
#SBATCH --error=log/%x-%A.err
#SBATCH --constraint=cpu # use this if you want to only use cpu
#SBATCH -p aquila
module purge
module load anaconda3 cuda/11.1.1
nvidia-smi
nvcc --version
cd /gpfsnyu/scratch/yw3642/nbme/src
echo "START"
source deactivate
source /gpfsnyu/packages/anaconda3/5.2.0/bin/activate kaggle
python -u blend.py --result_dirs \
/gpfsnyu/scratch/yw3642/nbme/ckpt/2022-05-01-12:45:14-3b86 \
/gpfsnyu/scratch/yw3642/nbme/ckpt/2022-05-01-13:11:10-5a15 \
/gpfsnyu/scratch/yw3642/nbme/ckpt/2022-05-01-23:06:10-147b \
/gpfsnyu/scratch/yw3642/nbme/ckpt/2022-05-02-00:57:31-6812 \
--n_trials 2000 \
--n_jobs 1
#12. deberta-large-mnli 8927
#13. deberta-v3-large 8928
#15. deberta-xlarge
#16. deberta-v2-xlarge-mnli
echo "FINISH"