-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.txt
More file actions
42 lines (18 loc) · 1.17 KB
/
Copy pathinstructions.txt
File metadata and controls
42 lines (18 loc) · 1.17 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
To run experiments on tabular data for Table 3:
For AUCross, SCross, PlugIn, PlugInAUC
python exp_tabdata.py --model lgbm --boot_iter 1000 --cv 5 --metas cross scross plugin pluginAUC
For SAT
python exp_tabdata.py --model resnet --metas sat --boot_iter 1000 --max_epochs 300
For SELNET
python exp_tabdata_selnet.py --model resnet --boot_iter 1000 --max_epochs 300
To run experiments for CatsVsDogs and CIFAR10 for Table 2 (check the paths):
python exp_imdata.py --metas aucross scross plugin pluginAUC selnet sat
To run experiments for Table 2
python exp_oracle_tabdata.py
python exp_oracle_imdata.py
To run experiments for Appendix results on classifiers
python exp_tabdata.py --model DESIRED_CLASSIFIER --boot_iter 1000 --cv 5 --metas cross scross plugin pluginAUC
where DESIRED_CLASSIFIER can take as value rf for Random Forest, logistic for Logistic Regression, resnet for ResNet and xgboost for XGBoost
All the models used for image data are stored in the models folder, to avoid retraining them.
If you want to retrain models from scratch (e.g. you want to check training times),
go on exp_imdata.py and change all the lines refrerring directly to the models path.