-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.R
executable file
·71 lines (51 loc) · 1.98 KB
/
run.R
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# subchallenge 1 ---------------------------------------------------------------
# feature selection (this takes ~12 hours on 12 cores)
source("code/sc1/sc1-load.R")
source("code/sc1/sc1-fs.R")
# inspect and choose from the selected features to use in classification
source("code/sc1/sc1-load.R")
source("code/sc1/sc1-fs-agg.R")
# exploratory model fitting
source("code/sc1/sc1-fit-load.R")
source("code/sc1/sc1-fit-explore.R")
# parameter tuning
source("code/sc1/sc1-fit-tune.R")
# model selection
source("code/sc1/sc1-fit-compare.R")
# fit the model, phase 1 summary, make predictions for phase 2
source("code/sc1/sc1-fit-model.R")
source("code/sc1/sc1-predict.R")
# subchallenge 2 ---------------------------------------------------------------
# feature selection (this takes a few hours on 12 cores)
source("code/sc2/sc2-load.R")
source("code/sc2/sc2-fs.R")
# inspect and choose from the selected features to use in classification
source("code/sc2/sc2-load.R")
source("code/sc2/sc2-fs-agg.R")
# exploratory model fitting
source("code/sc2/sc2-fit-load.R")
source("code/sc2/sc2-fit-explore.R")
# parameter tuning
source("code/sc2/sc2-fit-tune.R")
# model selection
source("code/sc2/sc2-fit-compare.R")
# fit the model, phase 1 summary, make predictions for phase 2
source("code/sc2/sc2-fit-model.R")
source("code/sc2/sc2-predict.R")
# subchallenge 3 ---------------------------------------------------------------
# feature selection (this takes a few hours on 12 cores)
source("code/sc3/sc3-load.R")
source("code/sc3/sc3-fs.R")
# inspect and choose from the selected features to use in classification
source("code/sc3/sc3-load.R")
source("code/sc3/sc3-fs-agg.R")
# exploratory model fitting
source("code/sc3/sc3-fit-load.R")
source("code/sc3/sc3-fit-explore.R")
# parameter tuning
source("code/sc3/sc3-fit-tune.R")
# model selection
source("code/sc3/sc3-fit-compare.R")
# fit the model, phase 1 summary, make predictions for phase 2
source("code/sc3/sc3-fit-model.R")
source("code/sc3/sc3-predict.R")