Package | Description |
---|---|
org.deeplearning4j.eval.curves |
Modifier and Type | Method and Description |
---|---|
PrecisionRecallCurve.Point |
PrecisionRecallCurve.getPointAtPrecision(double precision)
Get the point (index, threshold, precision, recall) at the given precision.
Specifically, return the points at the lowest threshold that has precision equal to or greater than the requested precision. |
PrecisionRecallCurve.Point |
PrecisionRecallCurve.getPointAtRecall(double recall)
Get the point (index, threshold, precision, recall) at the given recall.
Specifically, return the points at the highest threshold that has recall equal to or greater than the requested recall. |
PrecisionRecallCurve.Point |
PrecisionRecallCurve.getPointAtThreshold(double threshold)
Get the point (index, threshold, precision, recall) at the given threshold.
Note that if the threshold is not found exactly, the next highest threshold exceeding the requested threshold is returned |
Copyright © 2017. All rights reserved.