@@ -408,7 +408,8 @@ def _create_input_data_config(
408
408
that piece is ignored by the pipeline.
409
409
410
410
Supported only for tabular and time series Datasets.
411
- This parameter must be used with training_fraction_split, validation_fraction_split and test_fraction_split.
411
+ This parameter must be used with training_fraction_split,
412
+ validation_fraction_split, and test_fraction_split.
412
413
gcs_destination_uri_prefix (str):
413
414
Optional. The Google Cloud Storage location.
414
415
@@ -669,7 +670,8 @@ def _run_job(
669
670
that piece is ignored by the pipeline.
670
671
671
672
Supported only for tabular and time series Datasets.
672
- This parameter must be used with training_fraction_split, validation_fraction_split and test_fraction_split.
673
+ This parameter must be used with training_fraction_split,
674
+ validation_fraction_split, and test_fraction_split.
673
675
model (~.model.Model):
674
676
Optional. Describes the Model that may be uploaded (via
675
677
[ModelService.UploadMode][]) by this TrainingPipeline. The
@@ -3487,9 +3489,9 @@ def run(
3487
3489
`time-offset` = `"Z"` (e.g. 1985-04-12T23:20:50.52Z). If for a
3488
3490
piece of data the key is not present or has an invalid value,
3489
3491
that piece is ignored by the pipeline.
3490
-
3491
3492
Supported only for tabular and time series Datasets.
3492
- This parameter must be used with training_fraction_split, validation_fraction_split and test_fraction_split.
3493
+ This parameter must be used with training_fraction_split,
3494
+ validation_fraction_split, and test_fraction_split.
3493
3495
weight_column (str):
3494
3496
Optional. Name of the column that should be used as the weight column.
3495
3497
Higher values in this column give more importance to the row
@@ -3681,9 +3683,9 @@ def _run(
3681
3683
`time-offset` = `"Z"` (e.g. 1985-04-12T23:20:50.52Z). If for a
3682
3684
piece of data the key is not present or has an invalid value,
3683
3685
that piece is ignored by the pipeline.
3684
-
3685
3686
Supported only for tabular and time series Datasets.
3686
- This parameter must be used with training_fraction_split, validation_fraction_split and test_fraction_split.
3687
+ This parameter must be used with training_fraction_split,
3688
+ validation_fraction_split, and test_fraction_split.
3687
3689
weight_column (str):
3688
3690
Optional. Name of the column that should be used as the weight column.
3689
3691
Higher values in this column give more importance to the row
@@ -4022,6 +4024,7 @@ def run(
4022
4024
validation_fraction_split : Optional [float ] = None ,
4023
4025
test_fraction_split : Optional [float ] = None ,
4024
4026
predefined_split_column_name : Optional [str ] = None ,
4027
+ timestamp_split_column_name : Optional [str ] = None ,
4025
4028
weight_column : Optional [str ] = None ,
4026
4029
time_series_attribute_columns : Optional [List [str ]] = None ,
4027
4030
context_window : Optional [int ] = None ,
@@ -4106,6 +4109,16 @@ def run(
4106
4109
ignored by the pipeline.
4107
4110
4108
4111
Supported only for tabular and time series Datasets.
4112
+ timestamp_split_column_name (str):
4113
+ Optional. The key is a name of one of the Dataset's data
4114
+ columns. The value of the key values of the key (the values in
4115
+ the column) must be in RFC 3339 `date-time` format, where
4116
+ `time-offset` = `"Z"` (e.g. 1985-04-12T23:20:50.52Z). If for a
4117
+ piece of data the key is not present or has an invalid value,
4118
+ that piece is ignored by the pipeline.
4119
+ Supported only for tabular and time series Datasets.
4120
+ This parameter must be used with training_fraction_split,
4121
+ validation_fraction_split, and test_fraction_split.
4109
4122
weight_column (str):
4110
4123
Optional. Name of the column that should be used as the weight column.
4111
4124
Higher values in this column give more importance to the row
@@ -4229,6 +4242,7 @@ def run(
4229
4242
validation_fraction_split = validation_fraction_split ,
4230
4243
test_fraction_split = test_fraction_split ,
4231
4244
predefined_split_column_name = predefined_split_column_name ,
4245
+ timestamp_split_column_name = timestamp_split_column_name ,
4232
4246
weight_column = weight_column ,
4233
4247
time_series_attribute_columns = time_series_attribute_columns ,
4234
4248
context_window = context_window ,
@@ -4260,6 +4274,7 @@ def _run(
4260
4274
validation_fraction_split : Optional [float ] = None ,
4261
4275
test_fraction_split : Optional [float ] = None ,
4262
4276
predefined_split_column_name : Optional [str ] = None ,
4277
+ timestamp_split_column_name : Optional [str ] = None ,
4263
4278
weight_column : Optional [str ] = None ,
4264
4279
time_series_attribute_columns : Optional [List [str ]] = None ,
4265
4280
context_window : Optional [int ] = None ,
@@ -4352,6 +4367,16 @@ def _run(
4352
4367
ignored by the pipeline.
4353
4368
4354
4369
Supported only for tabular and time series Datasets.
4370
+ timestamp_split_column_name (str):
4371
+ Optional. The key is a name of one of the Dataset's data
4372
+ columns. The value of the key values of the key (the values in
4373
+ the column) must be in RFC 3339 `date-time` format, where
4374
+ `time-offset` = `"Z"` (e.g. 1985-04-12T23:20:50.52Z). If for a
4375
+ piece of data the key is not present or has an invalid value,
4376
+ that piece is ignored by the pipeline.
4377
+ Supported only for tabular and time series Datasets.
4378
+ This parameter must be used with training_fraction_split,
4379
+ validation_fraction_split, and test_fraction_split.
4355
4380
weight_column (str):
4356
4381
Optional. Name of the column that should be used as the weight column.
4357
4382
Higher values in this column give more importance to the row
@@ -4511,7 +4536,7 @@ def _run(
4511
4536
validation_fraction_split = validation_fraction_split ,
4512
4537
test_fraction_split = test_fraction_split ,
4513
4538
predefined_split_column_name = predefined_split_column_name ,
4514
- timestamp_split_column_name = None , # Not supported by AutoMLForecasting
4539
+ timestamp_split_column_name = timestamp_split_column_name ,
4515
4540
model = model ,
4516
4541
create_request_timeout = create_request_timeout ,
4517
4542
)
0 commit comments