Consider a binary classification problem with three data points, denoted by {(xi,yi)}, where xi represents a one-dimensional feature and yi is the corresponding class label, as given below:
{(1,+1),(2,−1),(3,+1)}
Each data point gets uniform initial weights w1(0)=w2(0)=w3(0)=31, where wi(t) denotes the weight of i-th data point for tth iteration. Following are the two decision stumps given to us:
h1(x)={+1,−1,if x≤2if x>2,h2(x)={+1,−1,if x≤1if x>1.
We run the AdaBoost algorithm for one iteration by selecting the decision stump with the lowest training error. Then, find the value of w1(1)+w2(1). Enter the answer correct to one decimal place.