MLS-C01 · Question #124
The chief editor for a product catalog wants the research and development team to build a machine learning system that can be used to detect whether or not individuals in a collection of images are…
The correct answer is D. Convolutional neural network (CNN). The R&D team needs to build a machine learning system to detect if individuals in images are wearing a specific retail brand.
Question
The chief editor for a product catalog wants the research and development team to build a machine learning system that can be used to detect whether or not individuals in a collection of images are wearing the company's retail brand. The team has a set of training data. Which machine learning algorithm should the researchers use that BEST meets their requirements?
Options
- ALatent Dirichlet Allocation (LDA)
- BRecurrent neural network (RNN)
- CK-means
- DConvolutional neural network (CNN)
How the community answered
(27 responses)- A11% (3)
- B4% (1)
- C4% (1)
- D81% (22)
Why each option
The R&D team needs to build a machine learning system to detect if individuals in images are wearing a specific retail brand.
Latent Dirichlet Allocation (LDA) is a topic modeling algorithm used for discovering abstract "topics" in a collection of documents, not for image analysis.
Recurrent Neural Networks (RNNs) are primarily used for sequential data processing, such as natural language processing or time series analysis, not for static image classification.
K-means is an unsupervised clustering algorithm, used for grouping similar data points, not for supervised classification tasks like detecting specific objects or brands in images.
Convolutional Neural Networks (CNNs) are a class of deep learning models specifically designed for processing and analyzing visual data like images. They excel at tasks such as image classification, object detection, and feature extraction, making them the most suitable algorithm for detecting whether individuals in images are wearing a specific retail brand.
Concept tested: Image classification using Convolutional Neural Networks (CNNs)
Source: https://en.wikipedia.org/wiki/Convolutional_neural_network
Topics
Community Discussion
No community discussion yet for this question.