Show / Hide Table of Contents

Class BigQueryModelTraining

Inheritance
System.Object
BigQueryModelTraining
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 BigQueryModelTraining : IDirectResponseSchema

Properties

CurrentIteration

[Output-only, Beta] Index of current ML training iteration. Updated during create model query job to show job progress.

Declaration
[JsonProperty("currentIteration")]
public virtual int? CurrentIteration { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

ExpectedTotalIterations

[Output-only, Beta] Expected number of iterations for the create model query job specified as num_iterations in the input query. The actual total number of iterations may be less than this number due to early stop.

Declaration
[JsonProperty("expectedTotalIterations")]
public virtual long? ExpectedTotalIterations { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top