Starting from:

$29.99

Homework 6 AdaBoost.

ISYE 6740 Homework 6

Total 100 points.
1. AdaBoost. (30 points)
Consider the following dataset, plotting in the following figure. The first two coordinates represent the
value of two features, and the last coordinate is the binary label of the data.
X1 = (−1, 0, +1), X2 = (−0.5, 0.5, +1), X3 = (0, 1, −1), X4 = (0.5, 1, −1),
X5 = (1, 0, +1), X6 = (1, −1, +1), X7 = (0, −1, −1), X8 = (0, 0, −1).
In this problem, you will run through T = 3 iterations of AdaBoost with decision stumps (as explained
in the lecture) as weak learners.
(a) (15 points) For each iteration t = 1, 2, 3, compute t, αt, Zt, Dt by hand (i.e., show the calculation
steps) and draw the decision stumps on the figure (you can draw this by hand).
(b) (15 points) What is the training error of this AdaBoost? Give a short explanation for why
AdaBoost outperforms a single decision stump.
Table 1: Values of AdaBoost parameters at each timestep.
t t αt Zt Dt(1) Dt(2) Dt(3) Dt(4) Dt(5) Dt(6) Dt(7) Dt(8)
1
2
3
1
2. Linear regression: bias-variance tradeoff, CV, and variable selection (30 points)
Consider a dataset with n data points (x
i
, yi
), x
i ∈ R
n, following from the following linear model:
y
i = β
∗T
x
i + 
i
, i = 1, . . . , m,
where 
i are i.i.d. Gaussian noise with zero mean and variance σ
2
, and β

is the true parameter.
Consider the ridge regression as follows:
βˆ(λ) = arg min
β
(
1
m
Xm
i=1
(y
i − β
T x
i
)
2 + λkβk
2
2
)
, (1)
where λ ≥ 0 is the regularized parameter.
(a) (5 points) Find the closed form solution for βˆ(λ) and its distribution conditioning on {x
i} (i.e.,
treat them as fixed).
(b) (5 points) Calculate the bias E[x
T βˆ(λ)] − x
T β
∗ as a function of λ and some fixed test point x.
(c) (5 points) Calculate the variance term E

x
T βˆ(λ) − E[x
T βˆ(λ)]2

as a function of λ.
(d) (5 points) Use the results from parts (b) and (c) and the bias-variance decomposition to analyze
the impact of λ in the mean squared error. Specifically, which term dominates when λ is small,
and large, respectively?
(e) (5 points) Now suppose we have m = 100 samples. Write a pseudo-code to explain how to use
cross validation to find the optimal λ.
(f) (5 points) Explain if we would like to perform variable selection, how should we change the
regularization term in Equation (1) to achieve this goal.
2
3. Random forest and one-class SVM for email spam classifier (40 points)
Your task for this question is to build a spam classifier using the UCR email spam dataset https:
//archive.ics.uci.edu/ml/datasets/Spambase came from the postmaster and individuals who had
filed spam. Please download the data from that website. The collection of non-spam emails came from
filed work and personal emails, and hence the word ’george’ and the area code ’650’ are indicators of
non-spam. These are useful when constructing a personalized spam filter. You are free to choose any
package for this homework. Note: there may be some missing values. You can just fill in zero.
(a) (10 points) Build a CART model and visualize the fitted classification tree.
(b) (15 points) Now also build a random forest model. Partition the data to use the first 80%
for training and the remaining 20% for testing. Compare and report the test error for your
classification tree and random forest models on testing data. Plot the curve of test error (total
misclassification error rate) versus the number of trees for the random forest, and plot the test
error for the CART model (which should be a constant with respect to the number of trees).
(c) (15 points) Now we will use a one-class SVM approach for spam filtering. Partition the data to
use the first 80% for training and the remaining 20% for testing. Extract all non-spam emails
from the training block (80% of data you have selected) to build the one-class kernel SVM using
RBF kernel (you can turn the kernel bandwidth to achieve good performance). Then apply it on
the 20% of data reserved for testing (thus this is a novelty detection situation), and report the
total misclassification error rate on these testing data.
3

More products