Machine Learning #592
Answered
by
TatyOko28
houstonTaleubou
asked this question in
Q&A
|
What are the key differences between supervised and unsupervised learning? |
Answered by
TatyOko28
Feb 8, 2025
Replies: 1 comment
|
Supervised Learning: Uses labeled data (input-output pairs). Uses unlabeled data (no predefined outputs). |
0 replies
Answer selected by
houstonTaleubou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Supervised Learning:
Uses labeled data (input-output pairs).
The model learns from past data and makes predictions.
Examples: Regression, Classification (e.g., Spam detection, Face recognition).
Algorithms: Linear Regression, Decision Trees, Support Vector Machines (SVM), Neural Networks.
Unsupervised Learning:
Uses unlabeled data (no predefined outputs).
The model finds hidden patterns and relationships in data.
Examples: Clustering, Anomaly Detection (e.g., Customer segmentation, Fraud detection).
Algorithms: K-Means, DBSCAN, PCA, Autoencoders.