
Answer-first summary for fast verification
Answer: Supervised learning
## Detailed Explanation **Supervised learning** is the optimal choice for this scenario because: 1. **Labeled Dataset Availability**: The company possesses a "large dataset of labeled images" where each image has a corresponding animal type label. Supervised learning specifically requires labeled training data where input-output pairs are provided during training. 2. **Classification Task**: The goal is to "classify images of different types of animals," which is a classic supervised learning problem. The model learns patterns from the labeled examples to predict categories for new, unseen images. 3. **No Additional Labeling**: Since the company "will not label more data," supervised learning is appropriate as it utilizes existing labeled data without requiring ongoing human annotation. **Why other options are less suitable**: - **Unsupervised learning (B)**: This approach works with unlabeled data to discover patterns, clusters, or structures. It would be inappropriate here because the company already has labeled data, and unsupervised learning wouldn't leverage those labels for classification. - **Reinforcement learning (C)**: This involves an agent learning through trial-and-error interactions with an environment to maximize cumulative rewards. It's typically used for sequential decision-making problems (like game playing or robotics), not for static image classification with pre-labeled data. - **Active learning (D)**: This is a specialized approach where the model selects the most informative data points for human labeling to improve efficiency. Since the company explicitly states they "will not label more data," active learning is unsuitable as it requires ongoing human annotation. **Best Practice Consideration**: In AWS AI/ML services, supervised learning aligns with services like Amazon SageMaker for training classification models, where labeled datasets are fundamental requirements for algorithms like image classification using built-in algorithms or custom models.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A company has a large dataset of pre-labeled images and does not intend to label additional data. What type of machine learning should be used to train an image classification model for different animal types?
A
Supervised learning
B
Unsupervised learning
C
Reinforcement learning
D
Active learning
No comments yet.