Show / Hide Table of Contents

Class IterationResult

Information about a single iteration of the training run.

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

Properties

ArimaResult

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

ClusterInfos

Information about top clusters for clustering models.

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

DurationMs

Time taken to run the iteration in milliseconds.

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

ETag

The ETag of the item.

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

EvalLoss

Loss computed on the eval data at the end of iteration.

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

Index

Index of the iteration, 0 based.

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

LearnRate

Learn rate used for this iteration.

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

TrainingLoss

Loss computed on the training data at the end of iteration.

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

Implements

IDirectResponseSchema
In This Article
Back to top