Detection modes for anomaly detector

ZhuJode 66 Reputation points
2022-01-19T00:32:56.223+00:00

What are the detection modes of the Azure anomaly detector and how do we use the URI to access them?

Azure Cognitive Services
Azure Cognitive Services
A group of Azure artificial intelligence services and cognitive APIs that help build intelligent apps.
1,005 questions
No comments
{count} votes

Accepted answer
  1. Monalla-MSFT 6,656 Reputation points Microsoft Employee
    2022-01-19T03:14:54.857+00:00

    @ZhuJode - Thanks for reaching out.

    There are two types of Azure Anomaly Detection modes :

    1. Batch detection
      To detect anomalies throughout a batch of data points over a given time range, use the following request URI with your time series data:

    /timeseries/entire/detect.

    By sending your time series data at once, the API will generate a model using the entire series, and analyze each data point with it.

    1. Streaming detection
      To continuously detect anomalies on streaming data, use the following request URI with your latest data point:

    /timeseries/last/detect.

    By sending new data points as you generate them, you can monitor your data in real time. A model will be generated with the data points you send, and the API will determine if the latest point in the time series is an anomaly.

    Please go through this document for more reference : identify-anomalies

    Hope this helps.

    -------------------------------------------------------

    If the above response helped, please feel free to "Accept as Answer" and "upvote" the same so it can be beneficial to the community.

0 additional answers

Sort by: Most helpful