Class GoogleCloudAiplatformV1TimestampSplit
Assigns input data to training, validation, and test sets based on a provided timestamps. The youngest data pieces are assigned to training set, next to validation set, and the oldest to the test set. Supported only for tabular Datasets.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1TimestampSplit : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Key
Required. The key is a name of one of the Dataset's data columns. The values of the key (the values in the
column) must be in RFC 3339 date-time
format, where time-offset
= "Z"
(e.g. 1985-04-12T23:20:50.52Z).
If for a piece of data the key is not present or has an invalid value, that piece is ignored by the
pipeline.
Declaration
[JsonProperty("key")]
public virtual string Key { get; set; }
Property Value
Type | Description |
---|---|
string |
TestFraction
The fraction of the input data that is to be used to evaluate the Model.
Declaration
[JsonProperty("testFraction")]
public virtual double? TestFraction { get; set; }
Property Value
Type | Description |
---|---|
double? |
TrainingFraction
The fraction of the input data that is to be used to train the Model.
Declaration
[JsonProperty("trainingFraction")]
public virtual double? TrainingFraction { get; set; }
Property Value
Type | Description |
---|---|
double? |
ValidationFraction
The fraction of the input data that is to be used to validate the Model.
Declaration
[JsonProperty("validationFraction")]
public virtual double? ValidationFraction { get; set; }
Property Value
Type | Description |
---|---|
double? |