H13-311_V3.5 · Question #362
twenty two.Among machine learning algorithms, which of the following is not unsupervised learning?
The correct answer is B. Xgboost. XGBoost (B) is a supervised learning algorithm - it trains an ensemble of gradient-boosted decision trees to predict a labeled target variable, meaning it requires input-output pairs during training. GMM (Gaussian Mixture Models) is unsupervised, fitting a probabilistic model…
Question
twenty two.Among machine learning algorithms, which of the following is not unsupervised learning?
Options
- AGMM
- BXgboost
- CClustering
- DAssociation rules
How the community answered
(42 responses)- A2% (1)
- B79% (33)
- C14% (6)
- D5% (2)
Explanation
XGBoost (B) is a supervised learning algorithm - it trains an ensemble of gradient-boosted decision trees to predict a labeled target variable, meaning it requires input-output pairs during training. GMM (Gaussian Mixture Models) is unsupervised, fitting a probabilistic model to discover latent cluster structure in unlabeled data. Clustering algorithms (e.g., K-means, DBSCAN) are the textbook unsupervised category, grouping data by similarity with no ground-truth labels. Association Rules (e.g., Apriori) mine co-occurrence patterns from unlabeled transaction data - also unsupervised.
Memory tip: Supervised = needs a "supervisor" (labels/answers). XGBoost is a boosting method - it's always boosting toward a target, so it must be supervised. If an algorithm can run on raw, unlabeled data, it's unsupervised.
Topics
Community Discussion
No community discussion yet for this question.