Google Cloud Professional Machine Learning Engineer — Question 6

You work for a social media company. You need to detect whether posted images contain cars. Each training example is a member of exactly one class. You have trained an object detection neural network and deployed the model version to AI Platform Prediction for evaluation. Before deployment, you created an evaluation job and attached it to the AI Platform Prediction model version. You notice that the precision is lower than your business requirements allow. How should you adjust the model's final layer softmax threshold to increase precision?

Answer options

Correct answer: B

Explanation

To increase precision, you need to minimize the number of false positives, which can be achieved by lowering the recall. Lowering the recall will make the model more conservative in its predictions, thus reducing the chances of incorrectly identifying images that do not contain cars. The other options either do not directly address precision or contradict the need to reduce false positives.