A manufacturer streams temperature, vibration, and pressure readings from a factory machine every second. Engineers have not defined fixed threshold values for what counts as a problem, but they want the system to automatically flag any reading pattern that deviates sharply from the machine's normal historical behavior. Which AI workload fits this need?
Select an answer to reveal the explanation.
Short Explanation
Picture a machine that hums along the same way day after day, and you want an alarm that goes off the moment something feels off, even though nobody ever wrote down exact numbers for what off means. That is the essence of this task: learn what normal looks like from history, then flag anything that breaks the pattern, without needing hardcoded limits. Predicting a specific future number, like what the temperature will read next hour, is a different exercise entirely - it produces a forecast, not a flag for unusual behavior. Sorting a picture into a labeled category, like spotting a scratch in a photo, does not apply here since the input is a stream of numbers, not images. And grouping similar readings together to discover natural clusters of operating states is useful for exploration, but it does not by itself raise an alert when one specific reading looks wrong. Since the ask is specifically about catching deviations from a learned baseline without preset rules, the workload built exactly for that purpose is the right fit.
Full Explanation
The correct answer is B. Anomaly detection is built to learn what normal behavior looks like from historical time-series data and then flag new readings that fall outside that learned pattern, which matches the engineers' need to catch unusual sensor behavior without hand-coding threshold rules. Option A is incorrect because regression predicts a specific continuous numeric value, such as tomorrow's expected temperature, rather than judging whether an observed value is unusual compared to a learned baseline. Option C is incorrect because image classification assigns a label to a picture, such as identifying a defect in a photograph, and has no role in evaluating a stream of numeric sensor readings over time. Option D is incorrect because clustering groups similar data points together to reveal natural categories, which could help segment normal operating states but is not itself the task of flagging individual readings that break from those patterns in real time. The engineers explicitly say they lack predefined thresholds and want deviations from normal behavior surfaced automatically, which is the defining trait of an anomaly detection workload rather than a prediction, image, or grouping task.