pub struct PrPoint<T: Scalar> {
pub precision: T,
pub recall: T,
pub threshold: T,
}
Expand description
Represents a single point along a precision-recall curve
Fields§
§precision: T
Precision value
recall: T
Recall value
threshold: T
Score threshold
Trait Implementations§
impl<T: Copy + Scalar> Copy for PrPoint<T>
impl<T: Scalar> StructuralPartialEq for PrPoint<T>
Auto Trait Implementations§
impl<T> Freeze for PrPoint<T>where
T: Freeze,
impl<T> RefUnwindSafe for PrPoint<T>where
T: RefUnwindSafe,
impl<T> Send for PrPoint<T>where
T: Send,
impl<T> Sync for PrPoint<T>where
T: Sync,
impl<T> Unpin for PrPoint<T>where
T: Unpin,
impl<T> UnwindSafe for PrPoint<T>where
T: UnwindSafe,
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