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
my_detector = AnomalyDetector(ts)
score = my_detector.get_all_scores()
for timestamp, value in score.iteritems():
print(timestamp, value)
Does it calculate the scores as they come like a real-time anomaly detection instead of looking at what the value is before? Is there a way to tune the parameters of the above code as well like the window size and chunk size? If so, how?
Thank you very much.
The text was updated successfully, but these errors were encountered:
Hi,
This is not really an issue but couple questions. The example code that calculates the anomaly scores e.g:
from luminol.anomaly_detector import AnomalyDetector
ts = {0: 0, 1: 0.5, 2: 1, 3: 1, 4: 1, 5: 0, 6: 0, 7: 0, 8: 0}
my_detector = AnomalyDetector(ts)
score = my_detector.get_all_scores()
for timestamp, value in score.iteritems():
print(timestamp, value)
Does it calculate the scores as they come like a real-time anomaly detection instead of looking at what the value is before? Is there a way to tune the parameters of the above code as well like the window size and chunk size? If so, how?
Thank you very much.
The text was updated successfully, but these errors were encountered: