accuracy
Description
Given an Observable of ground-truth labels and predictions, the accuracy operator returns the accuracy (trueness) of the predicted labels.
API
accuracy([initialState={truePositives: 0, falsePositives: 0, trueNegatives: 0, falseNegatives: 0}])Since
0.5
Parameters
None
Options
initialState: Object {truePositives: Number, falsePositives: Number, trueNegatives: 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).truePositives: Numberis a count of the true positivesfalsePositives: Numberis a count of the false positivestrueNegatives: Numberis a count of the true negativesfalseNegatives Numberis a count of the false negatives
Returns
Number. (The current accuracy of the Observable.)
Examples
Last updated
Was this helpful?