-
Notifications
You must be signed in to change notification settings - Fork 0
/
exp-add2-5d.R
95 lines (80 loc) · 2.93 KB
/
exp-add2-5d.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Simulation code corresponding to Figure 3 of the paper (Scenario 4)
library(devtools)
setwd("../npparam/")
load_all()
library(npparam)
source("../sim-npparam/synthetic.R")
source("../sim-npparam/estimators.R")
simulate.one <- function(n){
data <- additive.adaptive(sample.size = n, sigma = 0.1)
cat("Fitting additive isotonic for sample size", n, "\n")
add.est <- additive.iso.est(data$x, data$y)
cat("Fitting additive sieve for sample size", n, "\n")
sieve.est <- .fit.additive.sieve(data$x, data$y)
cat("Fitting GBM for sample size", n, "\n")
gbm.est <- .fit.additive.gbm(data$x, data$y)
gam.est <- .fit.gam(data$x, data$y)
if(n > 2000){
cat("Skipping KRR for sample size", n, "\n")
krr.est <- NULL
}else{
cat("Fitting KRR for sample size", n, "\n")
krr.est <- .fit.additive.krr(data$x, data$y)
}
out <- list("add.est"=add.est,
"sieve.est"=sieve.est,
"krr.est"=krr.est,
"gbm.est"=gbm.est,
"gam.est"=gam.est)
out
}
run.experiment <- function(seed, n){
set.seed(seed)
test.x <- matrix(runif(1e4*5, 0, 1), ncol=5)
data <- additive.adaptive(sample.size = 10, sigma = 0.1)
test.y <- data$fn(test.x)
df <- data.frame(matrix(ncol = 5, nrow = 0))
x <- c("n", "seed", "risk", "estimator", "L")
colnames(df) <- x
res <- replicate(10, simulate.one(n), simplify = FALSE)
est.risk <- unlist(lapply(res, function(m){
mean((predict(m$add.est, test.x)-test.y)^2)}))
out.df <- data.frame(n=n, seed=seed, risk=est.risk, estimator="additive iso",
L=0)
df <- rbind(df, out.df)
est.risk <- unlist(lapply(res, function(m){
mean((m$sieve.est(test.x)-test.y)^2)}))
out.df <- data.frame(n=n, seed=seed, risk=est.risk, estimator="sieve",
L=0)
df <- rbind(df, out.df)
est.risk <- unlist(lapply(res, function(m){
mean((m$gam.est(test.x)-test.y)^2)}))
out.df <- data.frame(n=n, seed=seed, risk=est.risk, estimator="gam",
L=0)
df <- rbind(df, out.df)
est.risk <- unlist(lapply(res, function(m){
mean((m$gbm.est(test.x)-test.y)^2)}))
out.df <- data.frame(n=n, seed=seed, risk=est.risk, estimator="gbm",
L=0)
df <- rbind(df, out.df)
if(n <= 2000){
est.risk <- unlist(lapply(res, function(m){
mean((m$krr.est(test.x)-test.y)^2)}))
out.df <- data.frame(n=n, seed=seed, risk=est.risk, estimator="krr",
L=0)
df <- rbind(df, out.df)
}
return(df)
}
# call Rscript cross_validation.R 100 500
args <- commandArgs(trailingOnly = TRUE)
seed <- as.numeric(args[1]) # seed
cat("Base seed = ", seed, "\n")
sample.n <- as.numeric(args[2]) # seed
cat("Sample size = ", sample.n, "\n")
base.dir <- "../sim-npparam/results"
save.dir <- file.path(base.dir, "add-exp2-5d")
dir.create(save.dir)
out.df <- run.experiment(seed, sample.n)
filename <- paste0("seed", seed, "N", sample.n, ".RData")
save(out.df, file=file.path(save.dir, filename))