Besedilo vprašanja
Which statements about Bagging (Bootstrap Aggregating) are correct?
Which statements about Bagging (Bootstrap Aggregating) are correct?
A classifier was trained using a learning set that contains 200 examples: 20 from the class C1, 76 from the class C2, 37 from the class C3, and 67 from the class C4. The classifier was tested on an independent set of examples. The results are summarized in the following confusion matrix:
| \ Predicted class Observed class \ |
C1 | C2 | C3 | C4 |
|---|---|---|---|---|
| C1 | 14 | 3 | 4 | 4 |
| C2 | 1 | 13 | 0 | 2 |
| C3 | 5 | 0 | 16 | 15 |
| C4 | 16 | 8 | 2 | 47 |
Given is a data set consisting of 1000 examples (600 from the positive class and 400 from the negative class. What happens if we use a k-nearest neighbors model by setting the parameter k to the number of training examples?
(select one or more answers)
The classifier was tested on a two class problem and we obtained the following confusion matrix:
| \ Classified as True \ class \ |
0 | 1 |
| 0 | 250 | 50 |
| 1 | 90 | 110 |
We trained a model to predict a numeric target variable. Which measures can be used to evaluate the quality of the model?