Looking for Data Analytics (Eng) / Data Analitika (Ing) - 344 test answers and solutions? Browse our comprehensive collection of verified answers for Data Analytics (Eng) / Data Analitika (Ing) - 344 at stemlearn.sun.ac.za.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Given a dataset comprising of instances 1 to 5, if the Boosting model trained during iteration 0 only classified 3 instances correctly, what is the updated weight value of each instance that was classified incorrectly? Write your answer correct to one decimal place.
Consider the binary classification task of predicting whether a generator is "Faulty" or "Good". Towards this extend an AdaBoost model was constructed using three models. Given a new generator we want to calculate whether the generator is faulty or good. Is the new generator "Faulty" or "Good", based on the following information?
Consider the binary classification task of predicting whether a person has a heart disease based on: whether the patient suffers from chest pain (Chest Pain), the blood pressure of the patient (Blood Pressure) and the age of the patient (Age). For this task, we opted to use a random forest composed of three decision trees. The following diagram illustrates each of the trees:
Assuming that the random forest uses majority voting, what prediction will be made for the following query?
Chest Pain = Yes, Blood Pressure = Low, Age = Below 50
Given a dataset comprising of instances 1 to 5, if the AdaBoosting model trained during iteration 0 only classified 3 instances correctly, what is the voting weight of the model trained during iteration 0? Write your answer correct to one decimal place.
Consider the binary classification task of predicting whether a generator is faulty or good. To deal with the problem posed, we have decided to construct an AdaBoost model. What is the error rate for the model, based on the information provided in the table below?
Instance Index | 1 | 2 | 3 | 4 |
Weight | 0.3 | 0.25 | 0.15 | 0.3 |
Y (Actual) | 1 | -1 | 1 | 1 |
H (Predict) | 1 | 1 | 1 | -1 |