pub struct PrPoint {
pub recall: f64,
pub precision: f64,
pub threshold: f64,
}Expand description
A single operating point on a precision–recall curve.
Fields§
§recall: f64Recall (true positive rate), TP / P.
precision: f64Precision, TP / (TP + FP).
threshold: f64The score threshold at which this point is reached.
Trait Implementations§
impl Copy for PrPoint
impl StructuralPartialEq for PrPoint
Auto Trait Implementations§
impl Freeze for PrPoint
impl RefUnwindSafe for PrPoint
impl Send for PrPoint
impl Sync for PrPoint
impl Unpin for PrPoint
impl UnsafeUnpin for PrPoint
impl UnwindSafe for PrPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more