A retail company uses Azure Computer Vision to analyze in-store camera feeds. They recently added a new product line and updated the object detection model. However, the model fails to detect the new products. What should the company do first?
Trap 1: Use the pre-built 'products' model from Computer Vision.
Pre-built models may not include the new product line.
Trap 2: Increase the confidence threshold in the API call.
Adjusting threshold does not add new objects to detect.
Trap 3: Recreate the Computer Vision resource in a different region.
Region change does not affect model capabilities.
- A
Use the pre-built 'products' model from Computer Vision.
Why wrong: Pre-built models may not include the new product line.
- B
Increase the confidence threshold in the API call.
Why wrong: Adjusting threshold does not add new objects to detect.
- C
Retrain the custom object detection model with images of the new products.
Custom models need retraining with new labeled data.
- D
Recreate the Computer Vision resource in a different region.
Why wrong: Region change does not affect model capabilities.