-
Notifications
You must be signed in to change notification settings - Fork 6
/
01_run_trials.sh
19 lines (16 loc) · 1.43 KB
/
01_run_trials.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# PACS
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=PACS --method=deep-all
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=PACS --method=agr-sum
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=PACS --method=agr-rand
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=PACS --method=pcgrad
# VLCS
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=VLCS --method=deep-all
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=VLCS --method=agr-sum
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=VLCS --method=agr-rand
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=VLCS --method=pcgrad
# Office-Home
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=OfficeHome --method=deep-all
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=OfficeHome --method=agr-sum
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=OfficeHome --method=agr-rand
python scripts/run_trials.py --data_dir=data/processed --results_dir=results/trials --dataset=OfficeHome --method=pcgrad