Skip to content

Commit 38d1fbc

Browse files
author
Googler
committed
fix(components): Remove deprecated Wide and Deep Tabular workflow components
Signed-off-by: Googler <nobody@google.com> PiperOrigin-RevId: 837116282
1 parent ab7e607 commit 38d1fbc

File tree

7 files changed

+104
-8988
lines changed

7 files changed

+104
-8988
lines changed

components/google-cloud/RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Upcoming release
22

3+
* Remove deprecated Wide and Deep Tabular Workflow pipeline.
4+
35
## Release 2.22.0
46

57
* Fix for dataproc batch components pipeline failure.

components/google-cloud/google_cloud_pipeline_components/preview/automl/tabular/__init__.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424
from google_cloud_pipeline_components.preview.automl.tabular.tabnet_trainer import tabnet_trainer as TabNetTrainerOp
2525
from google_cloud_pipeline_components.preview.automl.tabular.utils import get_tabnet_hyperparameter_tuning_job_pipeline_and_parameters
2626
from google_cloud_pipeline_components.preview.automl.tabular.utils import get_tabnet_trainer_pipeline_and_parameters
27-
from google_cloud_pipeline_components.preview.automl.tabular.utils import get_wide_and_deep_hyperparameter_tuning_job_pipeline_and_parameters
28-
from google_cloud_pipeline_components.preview.automl.tabular.utils import get_wide_and_deep_trainer_pipeline_and_parameters
29-
from google_cloud_pipeline_components.preview.automl.tabular.wide_and_deep_hyperparameter_tuning_job import wide_and_deep_hyperparameter_tuning_job as WideAndDeepHyperparameterTuningJobOp
30-
from google_cloud_pipeline_components.preview.automl.tabular.wide_and_deep_trainer import wide_and_deep_trainer as WideAndDeepTrainerOp
3127
from kfp import components
3228

3329
__all__ = [
@@ -37,24 +33,12 @@
3733
'FeatureTransformEngineOp',
3834
'TabNetHyperparameterTuningJobOp',
3935
'TabNetTrainerOp',
40-
'WideAndDeepHyperparameterTuningJobOp',
41-
'WideAndDeepTrainerOp',
4236
'get_tabnet_hyperparameter_tuning_job_pipeline_and_parameters',
4337
'get_tabnet_trainer_pipeline_and_parameters',
44-
'get_wide_and_deep_hyperparameter_tuning_job_pipeline_and_parameters',
45-
'get_wide_and_deep_trainer_pipeline_and_parameters',
4638
]
4739

4840
tabnet_trainer_pipeline = components.load_component_from_file(
4941
# Note, please don't name it as `component.yaml` which will conflict with
5042
# the generated file.
5143
os.path.join(os.path.dirname(__file__), 'tabnet_trainer_pipeline.yaml')
5244
)
53-
54-
wide_and_deep_trainer_pipeline = components.load_component_from_file(
55-
# Note, please don't name it as `component.yaml` which will conflict with
56-
# the generated file.
57-
os.path.join(
58-
os.path.dirname(__file__), 'wide_and_deep_trainer_pipeline.yaml'
59-
)
60-
)

components/google-cloud/google_cloud_pipeline_components/preview/automl/tabular/utils.py

Lines changed: 102 additions & 713 deletions
Large diffs are not rendered by default.

components/google-cloud/google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py

Lines changed: 0 additions & 213 deletions
This file was deleted.

0 commit comments

Comments
 (0)