recall
Description
Given an Observable of ground-truth labels and predictions, the recall operator returns the recall.
API
recall([initialState={truePositives: 0, falseNegatives: 0}])Since
0.5
Parameters
None
Options
initialState: Object {truePositives: Number, falseNegatives: Number}: Sets a warm start value so that the calculation can continue from a non-zero starting point (instead of a blank state). The initialState should have these keys:truePositives: Numberis a count of the true positivesfalseNegatives: Numberis a count of the false negatives
Returns
Number. (The current recall of the Observable.)
Examples
Last updated
Was this helpful?