-
Notifications
You must be signed in to change notification settings - Fork 4
/
run.sh
27 lines (24 loc) · 853 Bytes
/
run.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
#!/bin/bash
# sample run file
cd /home/US-Patent-Matching-Kaggle/src
for fold in 0 1 2 3 4
do
python3 train.py \
paths="jarvislabs" \
trainer="deberta_v3_base" \
run.debug=False \
run.fold=$fold \
run.exp_num="53" \
trainer.dataloader_num_workers=6 \
data.use_custom_seperator=True \
model.model_name="microsoft/deberta-v3-base" \
model.class_name="DebertaV2ForSequenceClassificationGeneral" \
model.loss_type="mse" \
model.multi_sample_dropout=True \
model.attention_pool=False \
run.name="mse-stable-drop-msd" \
run.comment="mse loss + multi sample dropout with deberta StableDropout"
done
# use following line only while training on jarvislabs.ai
# pause instance programatically after running a series of experiments
python3 -c "from jarviscloud import jarviscloud; jarviscloud.pause()"