Show / Hide Table of Contents

Class BqmlTrainingRun.TrainingOptionsData

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

Inheritance
System.Object
BqmlTrainingRun.TrainingOptionsData
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 TrainingOptionsData

Properties

EarlyStop

Declaration
[JsonProperty("earlyStop")]
public virtual bool? EarlyStop { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

L1Reg

Declaration
[JsonProperty("l1Reg")]
public virtual double? L1Reg { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

L2Reg

Declaration
[JsonProperty("l2Reg")]
public virtual double? L2Reg { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

LearnRate

Declaration
[JsonProperty("learnRate")]
public virtual double? LearnRate { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

LearnRateStrategy

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

LineSearchInitLearnRate

Declaration
[JsonProperty("lineSearchInitLearnRate")]
public virtual double? LineSearchInitLearnRate { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

MaxIteration

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

MinRelProgress

Declaration
[JsonProperty("minRelProgress")]
public virtual double? MinRelProgress { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

WarmStart

Declaration
[JsonProperty("warmStart")]
public virtual bool? WarmStart { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
In This Article
Back to top