Skip to content

Latest commit

 

History

History
121 lines (112 loc) · 2.21 KB

File metadata and controls

121 lines (112 loc) · 2.21 KB

MOTCat

BLCA

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/BLCA/x20 \
--split_dir tcga_blca \
--model_type motcat \
--use_micro_batch \
--bs_micro 256 \
--ot_impl pot-uot-l2 \
--ot_reg 0.05 --ot_tau 0.5 \
--which_splits 5foldcv \
--apply_sig

BRCA

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/BRCA/x20 \
--split_dir tcga_brca \
--model_type motcat \
--use_micro_batch \
--bs_micro 256 \
--ot_impl pot-uot-l2 \
--ot_reg 0.1 --ot_tau 0.5 \
--which_splits 5foldcv \
--apply_sig

UCEC

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/UCEC/x20 \
--split_dir tcga_ucec \
--model_type motcat \
--use_micro_batch \
--bs_micro 256 \
--ot_impl pot-uot-l2 \
--ot_reg 0.1 --ot_tau 0.5 \
--which_splits 5foldcv \
--apply_sig

GBMLGG

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/GBMLGG/x20 \
--split_dir tcga_gbmlgg \
--model_type motcat \
--use_micro_batch \
--bs_micro 256 \
--ot_impl pot-uot-l2 \
--ot_reg 0.1 --ot_tau 0.5 \
--which_splits 5foldcv \
--apply_sig

LUAD

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/LUAD/x20 \
--split_dir tcga_luad \
--model_type motcat \
--use_micro_batch \
--bs_micro 256 \
--ot_impl pot-uot-l2 \
--ot_reg 0.05 --ot_tau 0.5 \
--which_splits 5foldcv \
--apply_sig

MCAT

BLCA

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/BLCA/x20 \
--split_dir tcga_blca \
--model_type mcat \
--which_splits 5foldcv \
--apply_sig

BRCA

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/BRCA/x20 \
--split_dir tcga_brca \
--model_type mcat \
--which_splits 5foldcv \
--apply_sig

UCEC

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/UCEC/x20 \
--split_dir tcga_ucec \
--model_type mcat \
--which_splits 5foldcv \
--apply_sig

GBMLGG

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/GBMLGG/x20 \
--split_dir tcga_gbmlgg \
--model_type mcat \
--which_splits 5foldcv \
--apply_sig

LUAD

CUDA_VISIBLE_DEVICES=0 python main.py \
--data_root_dir /path/to/LUAD/x20 \
--split_dir tcga_luad \
--model_type mcat \
--which_splits 5foldcv \
--apply_sig