Show / Hide Table of Contents

Class ModelDefinition.ModelOptionsData

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

Inheritance
System.Object
ModelDefinition.ModelOptionsData
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 ModelOptionsData

Properties

Labels

Declaration
[JsonProperty("labels")]
public virtual IList<string> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

LossType

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

ModelType

Declaration
[JsonProperty("modelType")]
public virtual string ModelType { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top