Struct eval_metrics::classification::RocPoint [−][src]
pub struct RocPoint<T: Scalar> {
pub tp_rate: T,
pub fp_rate: T,
pub threshold: T,
}Expand description
Represents a single point along a roc curve
Fields
tp_rate: TTrue positive rate
fp_rate: TFalse positive rate
threshold: TScore threshold
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for RocPoint<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for RocPoint<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more