Skip to content

Commit

Permalink
adding the model with 4 encoders
Browse files Browse the repository at this point in the history
  • Loading branch information
gihanpanapitiya committed Feb 20, 2024
1 parent 121230b commit 38c7076
Show file tree
Hide file tree
Showing 24 changed files with 2,808 additions and 0 deletions.
6 changes: 6 additions & 0 deletions model4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## To train models

`python run_models.py --config configs/config_ccle.yaml`

This command will the model using four different drug encoders for 10 different data splits.
Will add more details..
5 changes: 5 additions & 0 deletions model4/configs/config_ccle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
epochs: 100
data_type: CCLE
metric: auc
out_dir: cmp_ccle
cuda_id: 1
6 changes: 6 additions & 0 deletions model4/configs/config_ccle_gexp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
epochs: 100
data_type: CCLE
metric: auc
out_dir: ccle_gexp
cuda_id: 4
use_proteomics_data: 0 # 0: use gene expression, 1: use proteomics
5 changes: 5 additions & 0 deletions model4/configs/config_ccle_prot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
epochs: 100
data_type: CCLE
metric: auc
out_dir: ccle_prot
cuda_id: 2
5 changes: 5 additions & 0 deletions model4/configs/config_ctrpv2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
epochs: 100
data_type: CTRPv2
metric: auc
out_dir: cmp_ctrpv2
cuda_id: 4
6 changes: 6 additions & 0 deletions model4/configs/config_ctrpv2_gexp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
epochs: 100
data_type: CTRPv2
metric: auc
out_dir: ctrpv2_gexp
cuda_id: 4
use_proteomics_data: 0 # 0: use gene expression, 1: use proteomics
5 changes: 5 additions & 0 deletions model4/configs/config_ctrpv2_prot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
epochs: 100
data_type: CTRPv2
metric: auc
out_dir: ctrpv2_prot
cuda_id: 3
Loading

0 comments on commit 38c7076

Please sign in to comment.