forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Azure.CognitiveServices.AnomalyDetector.csproj
25 lines (22 loc) · 1.64 KB
/
Microsoft.Azure.CognitiveServices.AnomalyDetector.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>Microsoft Cognitive Services AnomalyDetector SDK</AssemblyTitle>
<AssemblyDescription>Provides access to the Microsoft Cognitive Services AnomalyDetector APIs.</AssemblyDescription>
<VersionPrefix>0.8.0</VersionPrefix>
<PackageTags>Microsoft Cognitive Services;Cognitive Services;Cognitive Services SDK;REST HTTP client;Anomaly Detector;Anomaly Detector API;Anomaly Detector SDK;Time series;netcore451511</PackageTags>
<PackageReleaseNotes>
<![CDATA[
The Cognitive Service Anomaly Detector Client SDK helps users detect anomalies automatically in time series data. It supports two functionalities:
1) Detect anomalies for the entire series in batch. This operation generates a model using an entire series, each point is detected with the same model. With this method, points before and after a certain point are used to determine whether it is an anomaly. The entire detection can give the user an overall status of the time series.
2) Detect anomaly status of the latest point in time series. This operation generates a model using points before the latest one. With this method, only historical points are used to determine whether the target point is an anomaly. The latest point detecting operation matches the scenario of real-time monitoring of business metrics.
]]>
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<AzureApiTag />
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>