|
a |
|
b/shepherd/run_disease_characterization.sh |
|
|
1 |
# Bash script to train SHEPHERD for novel disease characterization |
|
|
2 |
|
|
|
3 |
# Command to run this bash script: |
|
|
4 |
# bash run_disease_characterization.sh |
|
|
5 |
|
|
|
6 |
# Command to run with the best hyperparameters from the paper |
|
|
7 |
python train.py \ |
|
|
8 |
--edgelist KG_edgelist_mask.txt \ |
|
|
9 |
--node_map KG_node_map.txt \ |
|
|
10 |
--patient_data disease_simulated \ |
|
|
11 |
--run_type disease_characterization \ |
|
|
12 |
--saved_node_embeddings_path checkpoints/pretrain.ckpt \ |
|
|
13 |
--sparse_sample 300 \ |
|
|
14 |
--lr 1e-05 \ |
|
|
15 |
--upsample_cand 3 \ |
|
|
16 |
--neighbor_sampler_size 15 \ |
|
|
17 |
--lmbda 0.9 \ |
|
|
18 |
--kappa 0.029999999999999992 |