-
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
01b374b
commit c314921
Showing
61 changed files
with
3,370 additions
and
6,563 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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
10 changes: 0 additions & 10 deletions
10
feature_importance/00_ablation_regression_stability_script2.sh
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,12 @@ | ||
#!/bin/bash | ||
|
||
slurm_script="00_ablation_regression_ranking_script.sh" | ||
|
||
for data_name in "temperature" "performance" "parkinsons" "CCLE_PD_0325901"; do | ||
for dgp in "linear" "lss" "poly"; do | ||
for y_seed in {1..10}; do | ||
sbatch $slurm_script $data_name $dgp $y_seed | ||
sleep 2 | ||
done | ||
done | ||
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,12 @@ | ||
#!/bin/bash | ||
|
||
slurm_script="00_ablation_regression_selection_script.sh" | ||
|
||
for data_name in "temperature" "performance" "parkinsons" "CCLE_PD_0325901"; do | ||
for split_seed in {1..3}; do | ||
for rf_seed in {1..3}; do | ||
sbatch $slurm_script $data_name $split_seed $rf_seed | ||
sleep 2 | ||
done | ||
done | ||
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
#!/bin/bash | ||
|
||
slurm_script="00_ablation_regression_stability_script4.sh" | ||
slurm_script="00_ablation_regression_stability_script.sh" | ||
|
||
for split_seed in {1..3}; do | ||
sbatch $slurm_script $split_seed # Submit SLURM job with both split_seed and rf_seed as arguments | ||
sleep 2 | ||
for data_name in "temperature" "performance" "parkinsons" "CCLE_PD_0325901"; do | ||
for split_seed in {1..3}; do | ||
sbatch $slurm_script $data_name $split_seed | ||
sleep 2 | ||
done | ||
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
Oops, something went wrong.