a b/shepherd/run_causal_gene_discovery.sh
1
# Bash script to train SHEPHERD for causal gene discovery
2
3
# Command to run this bash script:
4
# bash run_causal_gene_discovery.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 causal_gene_discovery \
12
        --saved_node_embeddings_path checkpoints/pretrain.ckpt \
13
        --sparse_sample 100 \
14
        --lr 1e-05 \
15
        --upsample_cand 2 \
16
        --neighbor_sampler_size -1 \
17
        --lmbda 0.4 \
18
        --alpha 0.5 \
19
        --kappa 0.18
20