[][src]Struct gcp_client::google::cloud::datalabeling::v1beta1::PrCurve

pub struct PrCurve {
    pub annotation_spec: Option<AnnotationSpec>,
    pub area_under_curve: f32,
    pub confidence_metrics_entries: Vec<ConfidenceMetricsEntry>,
    pub mean_average_precision: f32,
}

Fields

annotation_spec: Option<AnnotationSpec>

The annotation spec of the label for which the precision-recall curve calculated. If this field is empty, that means the precision-recall curve is an aggregate curve for all labels.

area_under_curve: f32

Area under the precision-recall curve. Not to be confused with area under a receiver operating characteristic (ROC) curve.

confidence_metrics_entries: Vec<ConfidenceMetricsEntry>

Entries that make up the precision-recall graph. Each entry is a "point" on the graph drawn for a different confidence_threshold.

mean_average_precision: f32

Mean average prcision of this curve.

Trait Implementations

impl Clone for PrCurve[src]

impl Debug for PrCurve[src]

impl Default for PrCurve[src]

impl Message for PrCurve[src]

impl PartialEq<PrCurve> for PrCurve[src]

impl StructuralPartialEq for PrCurve[src]

Auto Trait Implementations

impl RefUnwindSafe for PrCurve

impl Send for PrCurve

impl Sync for PrCurve

impl Unpin for PrCurve

impl UnwindSafe for PrCurve

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]