-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.R
executable file
·47 lines (33 loc) · 1.18 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
# subchallenge 1 ---------------------------------------------------------------
# feature selection
source("code/sc1/sc1-load.R")
source("code/sc1/sc1-fs.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
source("code/sc2/sc2-load.R")
source("code/sc2/sc2-fs.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
source("code/sc3/sc3-load.R")
source("code/sc3/sc3-fs.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")