[bdbb47]: / shepherd / run_predict.sh

Download this file

35 lines (28 with data), 1.2 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
# Bash script to run SHEPHERD to generate predictions
# Command to run this bash script:
# bash predict.sh
# IMPORTANT
# - To generate predictions on your own dataset (default), please use --patient_data my_data
# - To generate predictions on simulated test patients, please use --patient_data test_predict
# Command to run the predict script for each task. Comment out tasks you don't want to generate predictions for.
python predict.py \
--run_type causal_gene_discovery \
--patient_data test_predict \
--edgelist KG_edgelist_mask.txt \
--node_map KG_node_map.txt \
--saved_node_embeddings_path checkpoints/pretrain.ckpt \
--best_ckpt checkpoints/causal_gene_discovery.ckpt
python predict.py \
--run_type patients_like_me \
--patient_data my_data \
--edgelist KG_edgelist_mask.txt \
--node_map KG_node_map.txt \
--saved_node_embeddings_path checkpoints/pretrain.ckpt \
--best_ckpt checkpoints/patients_like_me.ckpt
python predict.py \
--run_type disease_characterization \
--patient_data my_data \
--edgelist KG_edgelist_mask.txt \
--node_map KG_node_map.txt \
--saved_node_embeddings_path checkpoints/pretrain.ckpt \
--best_ckpt checkpoints/disease_characterization.ckpt