forked from microsoft/evodiff
-
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.
Added additional example scripts for finetuning on Absolut data.
- Loading branch information
Showing
19 changed files
with
500,695 additions
and
11,581 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,30 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH -p gpu | ||
#SBATCH --job-name il2_evodiff | ||
#SBATCH --output il2_evodiff | ||
#SBATCH -w gpu-2 | ||
#SBATCH --gres=gpu:1 | ||
#SBATCH --mem=50G | ||
|
||
|
||
module load cuda | ||
|
||
source /stg3/data3/Jonathan/.bashrc | ||
source /stg3/data3/Jonathan/.bash_profile | ||
|
||
conda activate evodiff | ||
|
||
|
||
python fine_tune.py --config_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/evodiff_ft/config/config640M.json \ | ||
--out_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_90/ \ | ||
--train_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_90/il2_90_genAI_train.txt \ | ||
--valid_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_90/il2_90_genAI_test.txt \ | ||
--large_model | ||
|
||
|
||
python fine_tune.py --config_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/evodiff_ft/config/config640M.json \ | ||
--out_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_80/ \ | ||
--train_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_80/il2_80_genAI_train.txt \ | ||
--valid_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/il2_80/il2_80_genAI_test.txt \ | ||
--large_model |
Large diffs are not rendered by default.
Oops, something went wrong.
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,28 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH -p gpu | ||
#SBATCH --job-name neura_evodiff | ||
#SBATCH --output neura_evodiff | ||
#SBATCH -w gpu-2 | ||
#SBATCH --gres=gpu:1 | ||
#SBATCH --mem=50G | ||
|
||
module load cuda | ||
|
||
source /stg3/data3/Jonathan/.bashrc | ||
source /stg3/data3/Jonathan/.bash_profile | ||
|
||
conda activate evodiff | ||
|
||
|
||
python fine_tune.py --config_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/evodiff_ft/config/config640M.json \ | ||
--out_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_80/ \ | ||
--train_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_80/neuraminidase_80_genAI_train.txt \ | ||
--valid_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_80/neuraminidase_80_genAI_test.txt \ | ||
--large_model | ||
|
||
python fine_tune.py --config_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/evodiff_ft/config/config640M.json \ | ||
--out_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_90/ \ | ||
--train_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_90/neuraminidase_90_genAI_train.txt \ | ||
--valid_fpath /stg3/data3/Jonathan/jonathan2/resp2_absolut/fine_tuning/neura_90/neuraminidase_90_genAI_test.txt \ | ||
--large_model |