[][src]Struct rusoto_rekognition::ProjectVersionDescription

pub struct ProjectVersionDescription {
    pub billable_training_time_in_seconds: Option<i64>,
    pub creation_timestamp: Option<f64>,
    pub evaluation_result: Option<EvaluationResult>,
    pub manifest_summary: Option<GroundTruthManifest>,
    pub min_inference_units: Option<i64>,
    pub output_config: Option<OutputConfig>,
    pub project_version_arn: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub testing_data_result: Option<TestingDataResult>,
    pub training_data_result: Option<TrainingDataResult>,
    pub training_end_timestamp: Option<f64>,
}

The description of a version of a model.

Fields

billable_training_time_in_seconds: Option<i64>

The duration, in seconds, that the model version has been billed for training. This value is only returned if the model version has been successfully trained.

creation_timestamp: Option<f64>

The Unix datetime for the date and time that training started.

evaluation_result: Option<EvaluationResult>

The training results. EvaluationResult is only returned if training is successful.

manifest_summary: Option<GroundTruthManifest>

The location of the summary manifest. The summary manifest provides aggregate data validation results for the training and test datasets.

min_inference_units: Option<i64>

The minimum number of inference units used by the model. For more information, see StartProjectVersion.

output_config: Option<OutputConfig>

The location where training results are saved.

project_version_arn: Option<String>

The Amazon Resource Name (ARN) of the model version.

status: Option<String>

The current status of the model version.

status_message: Option<String>

A descriptive message for an error or warning that occurred.

testing_data_result: Option<TestingDataResult>

Contains information about the testing results.

training_data_result: Option<TrainingDataResult>

Contains information about the training results.

training_end_timestamp: Option<f64>

The Unix date and time that training of the model ended.

Trait Implementations

impl Clone for ProjectVersionDescription[src]

impl Debug for ProjectVersionDescription[src]

impl Default for ProjectVersionDescription[src]

impl<'de> Deserialize<'de> for ProjectVersionDescription[src]

impl PartialEq<ProjectVersionDescription> for ProjectVersionDescription[src]

impl StructuralPartialEq for ProjectVersionDescription[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> Same<T> for T

type Output = T

Should always be Self

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.