Struct google_bigquery2::TrainingRun[][src]

pub struct TrainingRun {
    pub state: Option<String>,
    pub iteration_results: Option<Vec<IterationResult>>,
    pub start_time: Option<String>,
    pub training_options: Option<TrainingRunTrainingOptions>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

[Output-only, Beta] Different state applicable for a training run. IN PROGRESS: Training run is in progress. FAILED: Training run ended due to a non-retryable failure. SUCCEEDED: Training run successfully completed. CANCELLED: Training run cancelled by the user.

[Output-only, Beta] List of each iteration results.

[Output-only, Beta] Training run start time in milliseconds since the epoch.

[Output-only, Beta] Training options used by this training run. These options are mutable for subsequent training runs. Default values are explicitly stored for options not specified in the input query of the first training run. For subsequent training runs, any option not explicitly specified in the input query will be copied from the previous training run.

Trait Implementations

impl Default for TrainingRun
[src]

Returns the "default value" for a type. Read more

impl Clone for TrainingRun
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TrainingRun
[src]

Formats the value using the given formatter. Read more

impl Part for TrainingRun
[src]

Auto Trait Implementations

impl Send for TrainingRun

impl Sync for TrainingRun