You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The options set for anomaly detection:
var options = new SrCnnEntireAnomalyDetectorOptions()
{
Threshold = 0.05,
BatchSize = -1, // not set, so we are using the default, is that -1?
Sensitivity = 75.0,
DetectMode = SrCnnDetectMode.AnomalyAndMargin,
Period = -1,
DeseasonalityMode = SrCnnDeseasonalityMode.Median // the period is -1, so I assume deseasonalize is not applied?
};
The text was updated successfully, but these errors were encountered:
System information
Issue
What did you do?
Detected anomalies on dataset with only non-negative values and saw a negative expected value range.
What happened?

What did you expect?
The expected value range to be non-negative.
Source code / logs
Please paste or attach the code or logs or traces that would be helpful to diagnose the issue you are reporting.
Csv and email correspondence
covid19_deaths.zip
The options set for anomaly detection:
var options = new SrCnnEntireAnomalyDetectorOptions()
{
Threshold = 0.05,
BatchSize = -1, // not set, so we are using the default, is that -1?
Sensitivity = 75.0,
DetectMode = SrCnnDetectMode.AnomalyAndMargin,
Period = -1,
DeseasonalityMode = SrCnnDeseasonalityMode.Median // the period is -1, so I assume deseasonalize is not applied?
};
The text was updated successfully, but these errors were encountered: