正解:C
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features of classification machine learning", classification is a supervised machine learning technique used when the output variable represents discrete categories or classes. In this case, the brain scan images are already labeled into predefined haemorrhage types, such as "subarachnoid," "epidural," or
"intraventricular." The model's goal is to learn patterns from labeled examples and then predict the correct class for new, unseen images.
The use of categorized brain scan images clearly indicates a supervised learning setup because both the input (image data) and output (haemorrhage type) are known during training. This aligns with Microsoft's definition: classification problems "predict which category or class an item belongs to," often using algorithms such as logistic regression, decision trees, neural networks, or convolutional neural networks (CNNs) for image-based data.
In contrast:
* A. Clustering is an unsupervised learning approach that groups data into clusters based on similarity when no predefined labels exist.
* B. Regression predicts continuous numeric values (e.g., predicting age or temperature), not categories.
Because this project aims to automatically classify medical images into known diagnostic categories, it is a textbook example of classification.
Reference:Microsoft Learn - Identify common types of machine learning models: Regression, Classification, and Clustering (AI-900 Learning Path)