Show / Hide Table of Contents

Class BqmlTrainingRun

Inheritance
System.Object
BqmlTrainingRun
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class BqmlTrainingRun : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IterationResults

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

Declaration
[JsonProperty("iterationResults")]
public virtual IList<BqmlIterationResult> IterationResults { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<BqmlIterationResult>

StartTime

System.DateTime representation of StartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? StartTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

StartTimeRaw

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

Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type Description
System.String

State

[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.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
System.String

TrainingOptions

[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.

Declaration
[JsonProperty("trainingOptions")]
public virtual BqmlTrainingRun.TrainingOptionsData TrainingOptions { get; set; }
Property Value
Type Description
BqmlTrainingRun.TrainingOptionsData

Implements

IDirectResponseSchema
In This Article
Back to top