forked from kduxin/firelang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests, task data, start of fine-tuning, test prints
- Loading branch information
Xeadriel
committed
May 18, 2024
1 parent
46e30c6
commit 2b1306d
Showing
29 changed files
with
8,005 additions
and
7,484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python -m scripts.fineTune --sz_batch=200 --lr=0.005 --lr_scheduler=OneCycleLR --n_iters=600000 --eval_interval=1000 --savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l8_k20 --optimizer=adamw --seed=0 --accum_steps=10 --weight_decay=1e-6 --pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l8_k20 --task=MRPC | ||
|
||
python -m scripts.fineTune --sz_batch=200 --lr=0.005 --lr_scheduler=OneCycleLR --n_iters=600000 --eval_interval=1000 --savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l4_k10 --optimizer=adamw --seed=0 --accum_steps=10 --weight_decay=1e-6 --pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l4_k10 --task=MRPC | ||
|
||
python -m scripts.fineTune --sz_batch=200 --lr=0.005 --lr_scheduler=OneCycleLR --n_iters=600000 --eval_interval=1000 --savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l4_k1_polysemy --optimizer=adamw --seed=0 --accum_steps=10 --weight_decay=1e-6 --pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l4_k1_polysemy --task=MRPC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
python -m scripts.train \ | ||
--sz_batch=32768 \ | ||
--lr=0.005 \ | ||
--lr_scheduler=OneCycleLR \ | ||
--n_iters=600000 \ | ||
--eval_interval=1000 \ | ||
--savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l8_k20 \ | ||
--optimizer=adamw \ | ||
--seed=0 \ | ||
--accum_steps=10 \ | ||
--weight_decay=1e-6 \ | ||
--pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l8_k20 | ||
--task=MRPC | ||
|
||
python -m scripts.train \ | ||
--sz_batch=32768 \ | ||
--lr=0.005 \ | ||
--lr_scheduler=OneCycleLR \ | ||
--n_iters=600000 \ | ||
--eval_interval=1000 \ | ||
--savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l4_k10 | ||
--optimizer=adamw \ | ||
--seed=0 \ | ||
--accum_steps=10 \ | ||
--weight_decay=1e-6 \ | ||
--pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l4_k10 | ||
--task=MRPC | ||
|
||
python -m scripts.train \ | ||
--sz_batch=32768 \ | ||
--lr=0.005 \ | ||
--lr_scheduler=OneCycleLR \ | ||
--n_iters=600000 \ | ||
--eval_interval=1000 \ | ||
--savedir=results/fineTuningResults/MRPC_v1.1_wacky_mlplanardiv_d2_l4_k1_polysemy | ||
--optimizer=adamw \ | ||
--seed=0 \ | ||
--accum_steps=10 \ | ||
--weight_decay=1e-6 \ | ||
--pretrainedModel=checkpoints/v1.1/wacky_mlplanardiv_d2_l4_k1_polysemy | ||
--task=MRPC |
Oops, something went wrong.