[][src]Struct gcp_client::google::cloud::automl::v1beta1::text_extraction_evaluation_metrics::ConfidenceMetricsEntry

pub struct ConfidenceMetricsEntry {
    pub confidence_threshold: f32,
    pub recall: f32,
    pub precision: f32,
    pub f1_score: f32,
}

Metrics for a single confidence threshold.

Fields

confidence_threshold: f32

Output only. The confidence threshold value used to compute the metrics. Only annotations with score of at least this threshold are considered to be ones the model would return.

recall: f32

Output only. Recall under the given confidence threshold.

precision: f32

Output only. Precision under the given confidence threshold.

f1_score: f32

Output only. The harmonic mean of recall and precision.

Trait Implementations

impl Clone for ConfidenceMetricsEntry[src]

impl Debug for ConfidenceMetricsEntry[src]

impl Default for ConfidenceMetricsEntry[src]

impl Message for ConfidenceMetricsEntry[src]

impl PartialEq<ConfidenceMetricsEntry> for ConfidenceMetricsEntry[src]

impl StructuralPartialEq for ConfidenceMetricsEntry[src]

Auto Trait Implementations

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]