Show / Hide Table of Contents

Class TrainingRun

Information about a single training query run for the model.

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

Properties

DataSplitResult

Data split result of the training run. Only set when the input data is actually split.

Declaration
[JsonProperty("dataSplitResult")]
public virtual DataSplitResult DataSplitResult { get; set; }
Property Value
Type Description
DataSplitResult

ETag

The ETag of the item.

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

EvaluationMetrics

The evaluation metrics over training/eval data that were computed at the end of training.

Declaration
[JsonProperty("evaluationMetrics")]
public virtual EvaluationMetrics EvaluationMetrics { get; set; }
Property Value
Type Description
EvaluationMetrics

Results

Output of each iteration run, results.size() <= max_iterations.

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

StartTime

The start time of this training run.

Declaration
[JsonProperty("startTime")]
public virtual object StartTime { get; set; }
Property Value
Type Description
System.Object

TrainingOptions

Options that were used for this training run, includes user specified and default options that were used.

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

Implements

IDirectResponseSchema
In This Article
Back to top