-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029ead3
commit c85983d
Showing
34 changed files
with
303,154 additions
and
76,443 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
11 changes: 11 additions & 0 deletions
11
feature_importance/01_ablation_regression_script_synthetic.sh
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,11 @@ | ||
#!/bin/bash | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=ALL | ||
#SBATCH --partition=yugroup | ||
|
||
source activate mdi | ||
# Need to specify --result_name --ablate_features(default all features) --fitted(default not fitted) | ||
command="01_run_ablation_regression.py --nreps 1 --config mdi_local.synthetic_data_linear --split_seed 0 --simulation_seed ${1} --ignore_cache --create_rmd --folder_name linear_synthetic --fit_model True --positive_masking True --absolute_masking True --negative_masking True" | ||
|
||
# Execute the command | ||
python $command |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
|
||
slurm_script="01_ablation_regression_script.sh" | ||
slurm_script="01_ablation_regression_script_synthetic.sh" | ||
|
||
for rep in {1..10} | ||
do | ||
sbatch $slurm_script $rep # Submit SLURM job using the specified script | ||
sleep 5 | ||
sleep 2 | ||
done |
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,11 @@ | ||
#!/bin/bash | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=ALL | ||
#SBATCH --partition=yugroup | ||
|
||
source activate mdi | ||
# Need to specify --result_name --ablate_features(default all features) --fitted(default not fitted) | ||
command="01_run_auroc_synthetic.py --nreps 1 --config mdi_local.synthetic_data_linear --split_seed 0 --simulation_seed ${1} --ignore_cache --create_rmd --folder_name linear_synthetic_new --fit_model True" | ||
|
||
# Execute the command | ||
python $command |
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,11 @@ | ||
#!/bin/bash | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=ALL | ||
#SBATCH --partition=yugroup | ||
|
||
source activate mdi | ||
# Need to specify --result_name --ablate_features(default all features) --fitted(default not fitted) | ||
command="01_run_auroc_synthetic.py --nreps 1 --config mdi_local.synthetic_data_lss --split_seed ${1} --ignore_cache --create_rmd --folder_name lss_synthetic --fit_model True" | ||
|
||
# Execute the command | ||
python $command |
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,11 @@ | ||
#!/bin/bash | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=ALL | ||
#SBATCH --partition=yugroup | ||
|
||
source activate mdi | ||
# Need to specify --result_name --ablate_features(default all features) --fitted(default not fitted) | ||
command="01_run_auroc_synthetic.py --nreps 1 --config mdi_local.synthetic_data_poly --split_seed ${1} --ignore_cache --create_rmd --folder_name poly_synthetic --fit_model True" | ||
|
||
# Execute the command | ||
python $command |
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,9 @@ | ||
#!/bin/bash | ||
|
||
slurm_script="01_auroc_regression_script_linear.sh" | ||
|
||
for rep in {1..3} | ||
do | ||
sbatch $slurm_script $rep # Submit SLURM job using the specified script | ||
sleep 2 | ||
done |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.