Шукаєте відповіді та рішення тестів для Machine Learning-(BSCS-2, BSDS-2)? Перегляньте нашу велику колекцію перевірених відповідей для Machine Learning-(BSCS-2, BSDS-2) в moodle.ucu.ac.ug.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
What does the max_depth parameter control in a Decision Tree?
A dataset has 950 negative and 50 positive samples. A classifier predicts ALL samples as negative. What is the accuracy and approximately what is the F1 score for the positive class?
You have only 200 labelled samples to evaluate a KNN classifier. A colleague uses a single 80/20 train-test split. You argue for 10-fold cross-validation. Which argument best supports your position?
A dataset has a feature "Student ID" which is unique for every student. If Information Gain is used as the splitting criterion, what would happen?
Consider two features: "Age" (range 0–100) and "Salary" (range 0–1,000,000). Without feature scaling, how will KNN behave?
In a confusion matrix for a disease classifier, a "False Negative" means:
A Decision Tree has min_samples_split=20. A node with 18 samples and Gini = 0.45 is encountered. What happens?
You are building a KNN classifier for cancer screening where missing a cancer case (False Negative) could be fatal. Which evaluation metric should you prioritise?
A KNN classifier has an AUC (Area Under the ROC Curve) of 0.50 on the test set. What does this indicate?
A KNN classifier produces the following confusion matrix:
| Predicted Positive | Predicted Negative | |
| Actual Positive | 40 | 10 |
| Actual Negative | 20 | 30 |
What is the Precision of this classifier?