Class DataSplitResult
Data split result. This contains references to the training and evaluation data tables that were used to train the model.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DataSplitResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EvaluationTable
Table reference of the evaluation data after split.
Declaration
[JsonProperty("evaluationTable")]
public virtual TableReference EvaluationTable { get; set; }
Property Value
Type | Description |
---|---|
TableReference |
TestTable
Table reference of the test data after split.
Declaration
[JsonProperty("testTable")]
public virtual TableReference TestTable { get; set; }
Property Value
Type | Description |
---|---|
TableReference |
TrainingTable
Table reference of the training data after split.
Declaration
[JsonProperty("trainingTable")]
public virtual TableReference TrainingTable { get; set; }
Property Value
Type | Description |
---|---|
TableReference |