-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand.sh
More file actions
46 lines (41 loc) · 2.26 KB
/
command.sh
File metadata and controls
46 lines (41 loc) · 2.26 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
41
42
43
44
45
46
#!/usr/bin/env bash
model_args='{"in_channels": 512, "n_target": 1, "k_nearest": 12, "hiddens": [128, 128, 128], "dropout": 0.28}'
python main.py --config config/ccRCC_H1.yaml \
--n_fold 5 \
--center ccRCC_H1 \
--WSI_info_list_file dataset/WSI_info_list/ccRCC_H1.json \
--model model.MSHGC.Model \
--model_args "$model_args" \
--work_dir work_dir/MSHGC/ccRCC_H1 \
--device 0 \
model_args='{"in_channels": 512, "n_target": 1, "k_nearest": 12, "hiddens": [128, 128, 128], "dropout": 0.28}'
python main.py --config config/ccRCC_H2.yaml \
--n_fold 5 \
--center ccRCC_H2\
--WSI_info_list_file dataset/WSI_info_list/ccRCC_H2.json \
--model model.MSHGC.Model \
--model_args "$model_args" \
--work_dir work_dir/ccRCC_H2 \
--device 0
model_args='{"in_channels": 512, "n_target": 1, "k_nearest": 12, "hiddens": [128, 128, 128], "dropout": 0.28}'
python main.py --config config/ccRCC_H1.yaml \
--n_fold 5 \
--center ccRCC_H1 \
--WSI_info_list_file dataset/WSI_info_list/ccRCC_H1.json \
--model model.MSHGC.Model \
--model_args "$model_args" \
--work_dir work_dir/MSHGC/ccRCC_H1_test \
--device 0 \
--phase test \
--weights work_dir/MSHGC/ccRCC_H1
model_args='{"in_channels": 512, "n_target": 1, "k_nearest": 12, "hiddens": [128, 128, 128], "dropout": 0.28}'
python main.py --config config/ccRCC_H2.yaml \
--n_fold 5 \
--center ccRCC_H2\
--WSI_info_list_file dataset/WSI_info_list/ccRCC_H2.json \
--model model.MSHGC.Model \
--model_args "$model_args" \
--work_dir work_dir/ccRCC_H2_test \
--device 0 \
--phase test \
--weights work_dir/MSHGC/ccRCC_H2