Show / Hide Table of Contents

Class ModelDefinition

Inheritance
System.Object
ModelDefinition
Implements
Google.Apis.Requests.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 ModelDefinition : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ModelOptions

[Output-only, Beta] Model options used for the first training run. These options are immutable for subsequent training runs. Default values are used for any options not specified in the input query.

Declaration
[JsonProperty("modelOptions")]
public virtual ModelDefinition.ModelOptionsData ModelOptions { get; set; }
Property Value
Type Description
ModelDefinition.ModelOptionsData

TrainingRuns

[Output-only, Beta] Information about ml training runs, each training run comprises of multiple iterations and there may be multiple training runs for the model if warm start is used or if a user decides to continue a previously cancelled query.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top