-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtrain.sh
More file actions
40 lines (33 loc) · 2.87 KB
/
train.sh
File metadata and controls
40 lines (33 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
## Parameters
GPUS=0
DATA_LOADER_CORES=1
### Training commands ###
## GCNN Trainings **NO LONGER AVAILABLE
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/psiblast/psiblast_graph.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/krashras/krashras_graph.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/kinase/kinase_graph.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/oncogenes/oncogenes_graph.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/enzyme/enzyme_graph.yaml
## 2D CNN Trainings
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/psiblast/psiblast_pairwise.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/krashras/krashras_pairwise.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/kinase/kinase_pairwise.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/oncogenes/oncogenes_pairwise.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/enzyme/enzyme_pairwise.yaml
## 3D CNN Trainings
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/psiblast/psiblast_volumes.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/krashras/krashras_volumes.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/kinase/kinase_volumes.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/oncogenes/oncogenes_volumes.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/enzyme/enzyme_volumes.yaml
## New GCNN with updated graph kernels
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/krashras/krashras_graph_new.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/psiblast/psiblast_graph_new.yaml
CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/kinase/kinase_graph_new.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/oncogenes/oncogenes_graph_new.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/enzyme/enzyme_graph_new.yaml
## CASP Structure Scoring Experiments
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/casp/casp_graph.yaml
## SARS Ligand Binding Affinity Regression
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/sars/sars_graph.yaml
#CUDA_VISIBLE_DEVICES=$GPUS python3 src/main.py --cores $DATA_LOADER_CORES src/configs/sars/sars_pairwise.yaml