public interface AnomalyEvaluation extends Evaluation<Event>
Evaluation
for anomaly detection Event
s.Modifier and Type | Method and Description |
---|---|
String |
confusionString()
Returns a confusion matrix formatted String for display.
|
double |
getF1()
Returns the F_1 score of the anomalous events, i.e., the harmonic mean of the precision and the recall.
|
long |
getFalseNegatives()
Returns the number of false negatives, i.e., anomalous events classified as expected.
|
long |
getFalsePositives()
Returns the number of false positives, i.e., expected events classified as anomalous.
|
double |
getPrecision()
Returns the precision of the anomalous events, i.e., true positives divided by the number of predicted positives.
|
double |
getRecall()
Returns the recall of the anomalous events, i.e., true positives divided by the number of positives.
|
long |
getTrueNegatives()
Returns the number of true negatives, i.e., expected events classified as events.
|
long |
getTruePositives()
Returns the number of true positives, i.e., anomalous events classified as anomalous.
|
asMap, get, getPredictions
long getFalsePositives()
long getTruePositives()
long getTrueNegatives()
long getFalseNegatives()
These are the ones you don't want.
double getPrecision()
double getRecall()
double getF1()
String confusionString()
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.