Topic 1 Question 255
A car company is developing a machine learning solution to detect whether a car is present in an image. The image dataset consists of one million images. Each image in the dataset is 200 pixels in height by 200 pixels in width. Each image is labeled as either having a car or not having a car.
Which architecture is MOST likely to produce a model that detects whether a car is present in an image with the highest accuracy?
Use a deep convolutional neural network (CNN) classifier with the images as input. Include a linear output layer that outputs the probability that an image contains a car.
Use a deep convolutional neural network (CNN) classifier with the images as input. Include a softmax output layer that outputs the probability that an image contains a car.
Use a deep multilayer perceptron (MLP) classifier with the images as input. Include a linear output layer that outputs the probability that an image contains a car.
Use a deep multilayer perceptron (MLP) classifier with the images as input. Include a softmax output layer that outputs the probability that an image contains a car.
ユーザの投票
コメント(7)
- 正解だと思う選択肢: B
Both MLP and CNN can process images, but CNN is more accurate and can be used for more complex images
👍 2SandeepGun2023/06/17 - 正解だと思う選択肢: B
B is right
👍 1awsarchitect52023/07/25 As it's a binary classification problem (car vs. no car) I would argue a linear output layer makes more sense than softmax...
👍 1cfx2102023/07/31
シャッフルモード