google-cloud-pipeline-components 2.14.1__py3-none-any.whl → 2.16.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of google-cloud-pipeline-components might be problematic. Click here for more details.

Files changed (88) hide show
  1. google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py +1 -1
  2. google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py +24 -0
  3. google_cloud_pipeline_components/_implementation/starry_net/__init__.py +41 -0
  4. google_cloud_pipeline_components/_implementation/{model_evaluation/import_evaluation → starry_net/dataprep}/__init__.py +1 -2
  5. google_cloud_pipeline_components/_implementation/starry_net/dataprep/component.py +173 -0
  6. google_cloud_pipeline_components/_implementation/starry_net/evaluation/__init__.py +13 -0
  7. google_cloud_pipeline_components/_implementation/starry_net/evaluation/component.py +23 -0
  8. google_cloud_pipeline_components/_implementation/starry_net/evaluation/evaluation.yaml +197 -0
  9. google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/__init__.py +13 -0
  10. google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py +62 -0
  11. google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/__init__.py +13 -0
  12. google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/component.py +77 -0
  13. google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/__init__.py +13 -0
  14. google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/component.py +97 -0
  15. google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/__init__.py +13 -0
  16. google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/component.py +76 -0
  17. google_cloud_pipeline_components/_implementation/starry_net/set_test_set/__init__.py +13 -0
  18. google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py +48 -0
  19. google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/__init__.py +13 -0
  20. google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/component.py +70 -0
  21. google_cloud_pipeline_components/_implementation/starry_net/set_train_args/__init__.py +13 -0
  22. google_cloud_pipeline_components/_implementation/starry_net/set_train_args/component.py +90 -0
  23. google_cloud_pipeline_components/_implementation/starry_net/train/__init__.py +13 -0
  24. google_cloud_pipeline_components/_implementation/starry_net/train/component.py +220 -0
  25. google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/__init__.py +13 -0
  26. google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py +64 -0
  27. google_cloud_pipeline_components/_implementation/starry_net/upload_model/__init__.py +13 -0
  28. google_cloud_pipeline_components/_implementation/starry_net/upload_model/component.py +23 -0
  29. google_cloud_pipeline_components/_implementation/starry_net/upload_model/upload_model.yaml +37 -0
  30. google_cloud_pipeline_components/_implementation/starry_net/version.py +18 -0
  31. google_cloud_pipeline_components/container/preview/custom_job/remote_runner.py +22 -0
  32. google_cloud_pipeline_components/container/utils/error_surfacing.py +45 -0
  33. google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py +36 -7
  34. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py +1 -1
  35. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py +2 -2
  36. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py +2 -2
  37. google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml +38 -34
  38. google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml +38 -34
  39. google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml +38 -34
  40. google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml +38 -34
  41. google_cloud_pipeline_components/preview/automl/forecasting/utils.py +49 -7
  42. google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py +1 -1
  43. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml +39 -39
  44. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml +41 -41
  45. google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py +2 -2
  46. google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py +2 -2
  47. google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml +4 -4
  48. google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py +3 -3
  49. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py +2 -2
  50. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml +15 -15
  51. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py +2 -2
  52. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml +13 -13
  53. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py +2 -2
  54. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml +14 -14
  55. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py +2 -2
  56. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml +13 -13
  57. google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml +14 -14
  58. google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml +13 -13
  59. google_cloud_pipeline_components/preview/custom_job/utils.py +45 -6
  60. google_cloud_pipeline_components/preview/llm/rlhf/component.py +3 -6
  61. google_cloud_pipeline_components/preview/starry_net/__init__.py +19 -0
  62. google_cloud_pipeline_components/preview/starry_net/component.py +469 -0
  63. google_cloud_pipeline_components/proto/task_error_pb2.py +0 -1
  64. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml +10 -10
  65. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml +31 -31
  66. google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml +13 -13
  67. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py +3 -3
  68. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml +14 -14
  69. google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml +37 -37
  70. google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py +2 -2
  71. google_cloud_pipeline_components/v1/automl/tabular/ensemble.py +2 -2
  72. google_cloud_pipeline_components/v1/automl/tabular/finalizer.py +1 -1
  73. google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py +1 -1
  74. google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py +1 -1
  75. google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py +2 -2
  76. google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py +2 -2
  77. google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py +1 -1
  78. google_cloud_pipeline_components/v1/automl/tabular/transform.py +2 -2
  79. google_cloud_pipeline_components/v1/custom_job/component.py +3 -0
  80. google_cloud_pipeline_components/v1/custom_job/utils.py +4 -0
  81. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py +21 -0
  82. google_cloud_pipeline_components/version.py +1 -1
  83. {google_cloud_pipeline_components-2.14.1.dist-info → google_cloud_pipeline_components-2.16.0.dist-info}/METADATA +17 -20
  84. {google_cloud_pipeline_components-2.14.1.dist-info → google_cloud_pipeline_components-2.16.0.dist-info}/RECORD +87 -58
  85. {google_cloud_pipeline_components-2.14.1.dist-info → google_cloud_pipeline_components-2.16.0.dist-info}/WHEEL +1 -1
  86. google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/component.py +0 -208
  87. {google_cloud_pipeline_components-2.14.1.dist-info → google_cloud_pipeline_components-2.16.0.dist-info}/LICENSE +0 -0
  88. {google_cloud_pipeline_components-2.14.1.dist-info → google_cloud_pipeline_components-2.16.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: google-cloud-pipeline-components
3
- Version: 2.14.1
3
+ Version: 2.16.0
4
4
  Summary: This SDK enables a set of First Party (Google owned) pipeline components that allow users to take their experience from Vertex AI SDK and other Google Cloud services and create a corresponding pipeline using KFP or Managed Pipelines.
5
5
  Home-page: https://github.com/kubeflow/pipelines/tree/master/components/google-cloud
6
6
  Author: The Google Cloud Pipeline Components authors
@@ -10,7 +10,6 @@ Project-URL: User Documentation, https://cloud.google.com/vertex-ai/docs/pipelin
10
10
  Project-URL: Reference Documentation, https://google-cloud-pipeline-components.readthedocs.io/
11
11
  Project-URL: Source, https://github.com/kubeflow/pipelines/tree/master/components/google-cloud
12
12
  Project-URL: Release Notes, https://github.com/kubeflow/pipelines/tree/master/components/google-cloud/RELEASE.md
13
- Platform: UNKNOWN
14
13
  Classifier: Development Status :: 4 - Beta
15
14
  Classifier: Operating System :: Unix
16
15
  Classifier: Operating System :: MacOS
@@ -31,24 +30,24 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
30
  Requires-Python: >=3.8.0,<3.12.0
32
31
  Description-Content-Type: text/markdown
33
32
  License-File: LICENSE
34
- Requires-Dist: google-api-core (!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5)
35
- Requires-Dist: kfp (<=2.7.0,>=2.6.0)
36
- Requires-Dist: google-cloud-aiplatform (<2,>=1.14.0)
37
- Requires-Dist: Jinja2 (<4,>=3.1.2)
33
+ Requires-Dist: google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5
34
+ Requires-Dist: kfp<=2.7.0,>=2.6.0
35
+ Requires-Dist: google-cloud-aiplatform<2,>=1.14.0
36
+ Requires-Dist: Jinja2<4,>=3.1.2
38
37
  Provides-Extra: docs
39
- Requires-Dist: protobuf (<5,>=4.21.1) ; extra == 'docs'
40
- Requires-Dist: grpcio-status (<=1.47.0) ; extra == 'docs'
41
- Requires-Dist: commonmark (==0.9.1) ; extra == 'docs'
42
- Requires-Dist: autodocsumm (==0.2.9) ; extra == 'docs'
43
- Requires-Dist: sphinx (<6.0.0,>=5.0.2) ; extra == 'docs'
44
- Requires-Dist: sphinx-immaterial (==0.9.0) ; extra == 'docs'
45
- Requires-Dist: sphinx-rtd-theme (==2.0.0) ; extra == 'docs'
46
- Requires-Dist: m2r2 (==0.3.3.post2) ; extra == 'docs'
47
- Requires-Dist: sphinx-notfound-page (==0.8.3) ; extra == 'docs'
38
+ Requires-Dist: protobuf<5,>=4.21.1; extra == "docs"
39
+ Requires-Dist: grpcio-status<=1.47.0; extra == "docs"
40
+ Requires-Dist: commonmark==0.9.1; extra == "docs"
41
+ Requires-Dist: autodocsumm==0.2.9; extra == "docs"
42
+ Requires-Dist: sphinx<6.0.0,>=5.0.2; extra == "docs"
43
+ Requires-Dist: sphinx-immaterial==0.9.0; extra == "docs"
44
+ Requires-Dist: sphinx-rtd-theme==2.0.0; extra == "docs"
45
+ Requires-Dist: m2r2==0.3.3.post2; extra == "docs"
46
+ Requires-Dist: sphinx-notfound-page==0.8.3; extra == "docs"
48
47
  Provides-Extra: tests
49
- Requires-Dist: mock (>=4.0.0) ; extra == 'tests'
50
- Requires-Dist: flake8 (>=3.0.0) ; extra == 'tests'
51
- Requires-Dist: pytest (>=6.0.0) ; extra == 'tests'
48
+ Requires-Dist: mock>=4.0.0; extra == "tests"
49
+ Requires-Dist: flake8>=3.0.0; extra == "tests"
50
+ Requires-Dist: pytest>=6.0.0; extra == "tests"
52
51
 
53
52
  # Google Cloud Pipeline Components
54
53
 
@@ -93,5 +92,3 @@ Use the following command to install Google Cloud Pipeline Components from [PyPI
93
92
  ```shell
94
93
  pip install -U google-cloud-pipeline-components
95
94
  ```
96
-
97
-
@@ -2,7 +2,7 @@ google_cloud_pipeline_components/__init__.py,sha256=HOU1WNUeWpY1HjluW8vbI7Cai_EF
2
2
  google_cloud_pipeline_components/_image.py,sha256=lANDYNk1WSuGZSoTTRcWdjsUvCkkA-PmwouTM9Et7fY,828
3
3
  google_cloud_pipeline_components/_placeholders.py,sha256=9yIbieYjZkZJg4xuKklxWQVn3Z-9ryb9Q6V15Jqpe98,3090
4
4
  google_cloud_pipeline_components/utils.py,sha256=9FG7umyEXhyUvtNeC46NuQ04olDMR3o-Wp78V1xs8GY,11045
5
- google_cloud_pipeline_components/version.py,sha256=mqV8CiP_lQd4grJX2ZcEOIP4iOm7tMfXZiGnTTocXkg,678
5
+ google_cloud_pipeline_components/version.py,sha256=6XTu2NA8mJp26lE9BbAm6Ou7J6HWv1FQKANOyVaJOLg,678
6
6
  google_cloud_pipeline_components/_implementation/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
7
7
  google_cloud_pipeline_components/_implementation/llm/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
8
8
  google_cloud_pipeline_components/_implementation/llm/batch_prediction_pairwise.py,sha256=mARB-tDYFr0tpBrLCIh481H4LDuXdr_8UyKVUaOF5Cw,7569
@@ -30,7 +30,7 @@ google_cloud_pipeline_components/_implementation/llm/utils.py,sha256=E250cmvw0QU
30
30
  google_cloud_pipeline_components/_implementation/llm/utils_test.py,sha256=co8gWyrowY5CpkFNsaLGQlD_gpIykkVI7czxIizp5cM,2864
31
31
  google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py,sha256=35E2jx3wG_1-qnF9u6GygEmekJ3dG9LklJx2Bh6ayJ8,4350
32
32
  google_cloud_pipeline_components/_implementation/llm/generated/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
33
- google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=f2xbcTpTWbLmdDGzPFRuDALXhK2S1WCIeLwNHt_rx98,763
33
+ google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=dSLCXSQKd4M1HxSIhoAmASPIqDa2qx7BMzHB97vIEz8,763
34
34
  google_cloud_pipeline_components/_implementation/model/__init__.py,sha256=KmOW74re0WZ93DWM1lqqQYbv6w1aIW66BMV3gaAdg3s,811
35
35
  google_cloud_pipeline_components/_implementation/model/get_model/__init__.py,sha256=cXMkDUZHVSbXeXSa3qsI6Ef8Tad9nmusw5NUZaYORdE,662
36
36
  google_cloud_pipeline_components/_implementation/model/get_model/component.py,sha256=H2sbMTWCw8nMDMT-Ni9-pdzVXEFmHYjtP3z1LcI5m5w,2307
@@ -57,8 +57,6 @@ google_cloud_pipeline_components/_implementation/model_evaluation/feature_extrac
57
57
  google_cloud_pipeline_components/_implementation/model_evaluation/feature_extractor/component.py,sha256=u4P3hSGBnFXtn8MKb8g1J9FAA74VpowBmPTmSDFq9J4,5539
58
58
  google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluated_annotation/__init__.py,sha256=-znXeLR3Uhon4BsRcAqHdVhcSUCqkY7rFouQFLD6Atg,684
59
59
  google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluated_annotation/component.py,sha256=d1QlNA_hpSJNgvwRJFGKZnVi0zc0KhZEHzVkq5wJWXQ,3053
60
- google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/__init__.py,sha256=eG4D5YbXHkveV6PP1uX8ZL48LCZ1mUtKGKb520dpILg,674
61
- google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/component.py,sha256=uZEtGhRtkCtjJFxBHFv8LSm_m7KlJxgmMhc2Whw6Mrw,8026
62
60
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/__init__.py,sha256=kEQ4aaKnV-KulHqbhb6eJIZzk4O7uSBRPzm_e3q_hcA,697
63
61
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/component.py,sha256=H0g7nMK3JVdQonLe5jpKvvzm9N2YzFGQUWJwwfxQ33s,11227
64
62
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/__init__.py,sha256=CUSeP0l2KFuo2wbw00DE5Zur0jpgHpZ1aThg7yqWuGY,680
@@ -68,7 +66,7 @@ google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding_
68
66
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/__init__.py,sha256=gDyltb_vTZRncaVZbMUkXYBHZsEg_CuaPAQVWUOGy7c,671
69
67
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/component.py,sha256=rclGlXxDr6vozQ6elDDCDbdJXWjG461Z9nmTaiKGsFs,7478
70
68
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/__init__.py,sha256=LLvQQ9Mv_md1POK_XErR7NUr-XAZX28w5KD0EQiT32w,684
71
- google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=H_rqyBZJP3VXO9_S5kr5soY6wJ0bFCIxXoDTIqR1Pxg,7952
69
+ google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=L6dPaWuOr-BhP7yAatFGVTX2MYTuI2f88W_oR5ee88E,9170
72
70
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/__init__.py,sha256=UcAfohvqwJ7X8rlV6I2RsZ5ohYWbafXI5yYRAAwvspE,695
73
71
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/component.py,sha256=hpwra0rXUP_LG6WNdnB9RD0cy1Gn3InrzAUJIk-oRc4,8142
74
72
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_retrieval_metrics/__init__.py,sha256=oVVVTCE230KYGcuz_rXYEuypZmm6OKg7K2BsFtpcDw0,701
@@ -90,6 +88,34 @@ google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_prepr
90
88
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_preprocess/component.py,sha256=Gnc5lpJjnGtlxQKyX5wZNyms1QBQga8CiMBh77QBCYM,5197
91
89
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_validate_and_process/__init__.py,sha256=EFQ99_7vrJ7J4R5dv5bwnhEC_d5kPTv5xlaZeRg1p8s,701
92
90
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_validate_and_process/component.py,sha256=N0i_X8xNdLzcEKudSWTbzB_d8u0W4a7xp2D8CC2HDYM,5636
91
+ google_cloud_pipeline_components/_implementation/starry_net/__init__.py,sha256=CSopfSpiwuix5UEjjVQWINND1-0uTReQAZ6ZA6Y9m5U,2502
92
+ google_cloud_pipeline_components/_implementation/starry_net/version.py,sha256=hptAsa5Vzj3QE7_1aGjqNkFI_eoFDjBI0fRuTbyYiAg,778
93
+ google_cloud_pipeline_components/_implementation/starry_net/dataprep/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
94
+ google_cloud_pipeline_components/_implementation/starry_net/dataprep/component.py,sha256=_n2EB1fC6xonSoLAWtNbnbQkVenGmKXy84dievBLQY4,7984
95
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
96
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/component.py,sha256=SlNxkVcaxmJRiOFxPjL71amNrE4R0J2UGl5xdHAZUgU,819
97
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/evaluation.yaml,sha256=qEcFeTONUU4HgiuPrqb8HkEPpkQARl6xIzGkRVuwogE,10283
98
+ google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
99
+ google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py,sha256=RD9oykj5ZPtShddhdWtHU2W1DCTr8BT9TrWQZcUhCq4,2213
100
+ google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
101
+ google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/component.py,sha256=Vv5_7aXU3mNw8JYFofioGMgik_qvokzoFSWgtJqVCcs,2734
102
+ google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
103
+ google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/component.py,sha256=mOHSabzjZXGCD6Nd-B-kAaOBsUoCTAEoFYLudk6l03k,3713
104
+ google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
105
+ google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/component.py,sha256=MEtS4QXWZgoVi5K9LlEv6WQ7teXR-UbzCOnMEjkroDQ,2638
106
+ google_cloud_pipeline_components/_implementation/starry_net/set_test_set/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
107
+ google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py,sha256=6OEzrA5-VTJMVR6udi9sG_-GjygkzX1MeiypWLILxcM,1686
108
+ google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
109
+ google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/component.py,sha256=xjXUunPDU0HmkTrPzWl9hfcQHcgdEtnCxYEEuS9sPd0,2423
110
+ google_cloud_pipeline_components/_implementation/starry_net/set_train_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
111
+ google_cloud_pipeline_components/_implementation/starry_net/set_train_args/component.py,sha256=MEol3nBmsGLMwiCnH9NhBCPxSmZkqyKco9qmkr9hXbA,3466
112
+ google_cloud_pipeline_components/_implementation/starry_net/train/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
113
+ google_cloud_pipeline_components/_implementation/starry_net/train/component.py,sha256=1dl7jP7AZaZA9LOoRbQCTtXMZlyd6j9ua7AcXIaG6vk,10997
114
+ google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
115
+ google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py,sha256=Okz_ZuiZ9084wqjzurkIez-Y6FDugdz0l_iTPMj1z_I,2257
116
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
117
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/component.py,sha256=P-gCilLSI8ypUDwRFSZKmkS0FS9JBXr6vk7_qLDTidE,826
118
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/upload_model.yaml,sha256=6eTzVJ7bvp67NjN0Y3HwZWdgYdswJTVXiQNSdOtSh_E,1462
93
119
  google_cloud_pipeline_components/container/__init__.py,sha256=5X_ymPsBAGK9hpepKd1PR0opJLeeMmHvB2DR5YjAtCQ,651
94
120
  google_cloud_pipeline_components/container/_implementation/__init__.py,sha256=Yz9TE5TRKlmUV6auolXWipHdEffdDa9XbXJ1P2uAjpo,659
95
121
  google_cloud_pipeline_components/container/_implementation/llm/__init__.py,sha256=D8WxLEcHEUlehVGp6bSBsCOyJz3Nza7OGJ5jGMEXNgI,665
@@ -105,7 +131,7 @@ google_cloud_pipeline_components/container/_implementation/model_evaluation/impo
105
131
  google_cloud_pipeline_components/container/preview/__init__.py,sha256=tOrlxtIqA4e41GJDdcldd7y32wrWjZvwT6Hq8R33l1I,651
106
132
  google_cloud_pipeline_components/container/preview/custom_job/__init__.py,sha256=KK7TRANpB8dE3H8VNxzSUDIVWaLBHNM9BfDF8JvcwXk,686
107
133
  google_cloud_pipeline_components/container/preview/custom_job/launcher.py,sha256=mpfayP1I_qbbPLc6M9C3YpLo6fHmzonEeVJy_o43zYU,1922
108
- google_cloud_pipeline_components/container/preview/custom_job/remote_runner.py,sha256=W42Drq-w7UVRZknfztHnWaJXeMWAGhF5r84s2AC0mx8,3591
134
+ google_cloud_pipeline_components/container/preview/custom_job/remote_runner.py,sha256=-BFnbYiwKrx95fbPfaNPL9iwEyOoPMerqlSV3-IA10A,4327
109
135
  google_cloud_pipeline_components/container/preview/dataflow/__init__.py,sha256=Dg_Omfhb8BmeW2N65q1TS7JBamUDVbjNrAy7sNdUcTo,655
110
136
  google_cloud_pipeline_components/container/preview/dataflow/flex_template/__init__.py,sha256=1X5undw-V6YQ4FedmyVmEqdaPg3dG-f08krz1UOAHfw,698
111
137
  google_cloud_pipeline_components/container/preview/dataflow/flex_template/launcher.py,sha256=yB1ZfK3lGtvNGrrN_9V2bYc-mjJ2eWUKiN_PxKy6GCM,1914
@@ -114,6 +140,7 @@ google_cloud_pipeline_components/container/preview/gcp_launcher/__init__.py,sha2
114
140
  google_cloud_pipeline_components/container/preview/gcp_launcher/job_remote_runner.py,sha256=-p4kwPvfeW3WcggjcZueZ0eQna_Tu47wvO31XlbY0Gs,8447
115
141
  google_cloud_pipeline_components/container/utils/__init__.py,sha256=yqPd0QW1ITPpcgd-0Fv5665kTX1HRPNutCfkBXnA_uA,638
116
142
  google_cloud_pipeline_components/container/utils/artifact_utils.py,sha256=VEb89NTTcyiy_ouO0ysosUv3nDwj9QfI_EbZnX9kHZk,3027
143
+ google_cloud_pipeline_components/container/utils/error_surfacing.py,sha256=OWi8ylVGsmDjOicTwmSWWOwdLsd-k7zOlOru9r5VNZw,1665
117
144
  google_cloud_pipeline_components/container/utils/execution_context.py,sha256=6d2qC7IE5BcVT2nLZzBg6T-I3yPiU1_J61t2wtlDEe8,1841
118
145
  google_cloud_pipeline_components/container/v1/__init__.py,sha256=iEvOrKaUA31vCoQeMAr7EBPKPkIwv5iLQ1tChsJok8w,651
119
146
  google_cloud_pipeline_components/container/v1/aiplatform/__init__.py,sha256=5X_ymPsBAGK9hpepKd1PR0opJLeeMmHvB2DR5YjAtCQ,651
@@ -265,7 +292,7 @@ google_cloud_pipeline_components/container/v1/model/export_model/launcher.py,sha
265
292
  google_cloud_pipeline_components/container/v1/model/export_model/remote_runner.py,sha256=YJwkjq5UhJtpX43pjqGs09dNPWpjJqct6cRAHDFBmZk,2479
266
293
  google_cloud_pipeline_components/container/v1/model/get_model/__init__.py,sha256=PgJlyiNYIex-iqZFd3B2H3SA8y0Kpajg8aFBEq36pwU,685
267
294
  google_cloud_pipeline_components/container/v1/model/get_model/launcher.py,sha256=VTDS59v35zz25UqA4mmTwhdmqluuKk6uinadn4KtgQ4,1909
268
- google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py,sha256=pUed_Pq5u6kl_CzSWwGvEeyA4PfRgREiVkScTRdIILs,2062
295
+ google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py,sha256=22DbMMpl9E-KPdHkOVP29v5pkS52BovcWLwJxCBfz24,3044
269
296
  google_cloud_pipeline_components/container/v1/model/upload_model/__init__.py,sha256=NZJ1pbjANZ1XDV-RvjtJcKX7Bdhw39_Eh_DRMq6vOko,688
270
297
  google_cloud_pipeline_components/container/v1/model/upload_model/launcher.py,sha256=QwnM9K43By8MNM9_iiIJH7LexeI6WLA5-V8iRS2S-0Y,2331
271
298
  google_cloud_pipeline_components/container/v1/model/upload_model/remote_runner.py,sha256=elCve0-6IrfQyI4qWVt6d5yI_DwwxOXVUE5aKF1U-mk,4480
@@ -277,35 +304,35 @@ google_cloud_pipeline_components/container/v1/wait_gcp_resources/remote_runner.p
277
304
  google_cloud_pipeline_components/preview/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
278
305
  google_cloud_pipeline_components/preview/automl/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
279
306
  google_cloud_pipeline_components/preview/automl/forecasting/__init__.py,sha256=Y-PNjGWILh5wMGQLmvaIukfr9KC9oD2GQLhfJDofrAQ,3532
280
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=UiIXnRrC0StwEbyrOaaFCgaLI_cmlfsZMc5-gD6GIqI,5655
281
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=csDNevJqjanzBrwOQZ_A57XOrQFuCIuS0CjdhMQqa6k,6564
282
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=RlRZOcVLbWoliAlomnc3Eg8Un7EYKZDbl6f4u4EBOIQ,6376
283
- google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=bISalN654A1jLJjtoh6dCsUPB_IMWxs12Hd7OmWYLQg,357164
284
- google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=ltjG3imP76HUlx03NiekniB5LyY6Sjy4SK9xVlFfOHQ,355343
285
- google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=yWvhx7OiMBJVsjhXePt1raf2FuYZ-x8WnriVp1XJyB0,354449
286
- google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=dXEzuV-q4_eBrvzwzlFaabjJlg_9EnveMadbNMtWkuI,357239
287
- google_cloud_pipeline_components/preview/automl/forecasting/utils.py,sha256=WpN7O7y95kVry-E-6o9uvR1_DDNXZ-xAA4tQdY6werU,53462
307
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=XLRVW0f_mVbSjZHuYfbjDbeTYnopJlfKNwoeu_y9hOM,5655
308
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=ovXaFy973Vjf8nMU3BHWouys3LuWoW6-FIjLTKWIpCc,6564
309
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=-fju7erZwhfEV756q40OAK60ccHPkk4LCLQ7gT6VlfY,6376
310
+ google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=Qup5pYCAcKww0v4CbfVcbNApCzVujeXPHgHL72tStsE,357434
311
+ google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=LvN-5MIh7PfQs2Sc6lEei5HgcIrK_Qmxk2Vd1Cdf0pQ,355613
312
+ google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=YNuyHOTZTWrUQKyc3V3FIvb_3IovVFc2Wlh-6tt4ynA,354719
313
+ google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=Glc78at-cZanE61U1tKu2wy0RuskyFoidAwf9fsdKPg,357509
314
+ google_cloud_pipeline_components/preview/automl/forecasting/utils.py,sha256=fet0opwz3FbuGpUOlm2AnwOI0PEk_wXjTBFqrF_2BNA,55547
288
315
  google_cloud_pipeline_components/preview/automl/tabular/__init__.py,sha256=jzu9udS0cH8lSSvgn3XerrKbs69GpMzI2NGSpNQmbcI,4247
289
- google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=80_T60cgEQREPzcHNnYXZ-jhPx0HpTvlupVPgHcS5gM,3643
290
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=A8J0CIH5YZ0cOG92N_eolGpMRdzPE37SBFIJl9diaiQ,511441
291
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=g5rbq6WlTlcA1almlSSjJgoDJ5USAD_DNNchSDfZiZ4,580670
292
- google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=pvRWXwEuDh29_ZJklesDf8hZ4i4HQfU9zvA-e53k894,9629
293
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=4IwrjDDZ759fwNPcNIT3ZCKWoBAFRKpjC7vs4K_GB8o,7546
294
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=KAShAH9CAwsKa4F0NgzQdfpxpPIeVipaqPS0Ezb3spg,75354
295
- google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=9PoFSrdx__b6UL5DxbLQI7t5WmvdwS7AUFQ0AzdPzGs,47372
296
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=iA61-apGcmULBRZK0y_kH62X1XDcDyooVgkstn0xWnM,9980
297
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=RM2b_jElWDmC_egJ4Ksr-SvHQpJJmy0gJ9L4eqzd3Kc,243042
298
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=tJiEqyjvcr32Hujf0eX70aqC5c_rJvYxrq260xWz71g,12748
299
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=PMyvRP2QmZTgK96qiNzutk0sigMxDGAT98wYex9u4d0,202129
316
+ google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=oISNesVyQTFCAxCymVhd7d3CKK-2xPdOdTXkTsHxCow,3643
317
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=wzjLOiLIo2fhSnKlYVqc5uoaupY5F4iffYUmS8WDK58,511441
318
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=pAx25oZElX_vMl-7oia6q6q_jzu0ZlA_S7PmtuAvi-o,580670
319
+ google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=2SFfZp26ERDUt3ln9jt1R9bJuNhIETvMklNr-khvkJ0,9629
320
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=lnUGcTY2CnQNE47lVFWGRv3hmlziJil0waKmeLT-blQ,7546
321
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=qNkTsE1Cet7cFJG69w7gPsqmroi68vQl4kmie3yjW1k,75354
322
+ google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=XXtW5GkSDthc2HV5K28rRkfs2DWMFbMm_BM7OSpyTws,47372
323
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=39-KIHnSr9IqyLhRCOCjHZsGGpb1liiJR05_liMkLps,9980
324
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=MhksXskVitPN_ZKCXJQP9GFsPC521KP9KZJZdhctBeM,243042
325
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=H0fqsIbZ09ECwVLeoz70zKVe1ea3NlRUefGy-tEGpcc,12748
326
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=LJwgBWlyaMMjUuVmqyAb2mnCHYcL9yoK6iSqQDch2XY,202129
300
327
  google_cloud_pipeline_components/preview/automl/tabular/utils.py,sha256=R5Vzq9dlFh619Rbw03xuCMpgFxSX2rDNf5i5gGE93yM,168283
301
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=mmKMRR2xlUMP_GdlqcH7EqOmO0zUrasy6wR1xn8Oekc,9975
302
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=Pbu8qAA2ARjeWCNudeJCQvfgjlreezaWvv6Sr2byHc0,195050
303
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=wZkA7PpvvLFDqdluLir9BvL9FdIxIUiDnLWeg54MC_c,11922
304
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=MOsLro6fElGOaVrD6-pZy7WMdNwbzhhbj-pbqdSaXQ8,190786
328
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=3rfsRqk53GjUeF7M32qyEcxdqQYNLq4N8XZF5Il0eog,9975
329
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=mMiabxG2GhHHPDXOgnZjcOyIuDyPyGzoONm2CRb8ID4,195050
330
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=Q5jEeuiDRiax8D4bQQf_Inhl53NR_Hgquzzz953yrLQ,11922
331
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=SrnYGs-gy5WfHDN6qlO5RCL0hOuGAXiqNRt5PKoQCo8,190786
305
332
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job.py,sha256=BYgs8CyzSObP6NeHbIXQaCV2Cgn2f0uJ47sxWHM6rT0,4787
306
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=hl5sQP43x_6zSBmrEyQQyLWh97nQWyDrEsMLz1hDMao,223562
333
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=3fUjye-oOnSg9M2kjsWOnRZAkZUGvsCLiJRg5v80EqY,223562
307
334
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer.py,sha256=fpc36b4aiggwj7suMa3oCxcJbQoFQZ5H15eFeustDWc,2333
308
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=LIANnnSzmg-1iJEXZYtz0VnU0-XcY2BoxWNGOvTIay8,208025
335
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=dqSL-9y0W4vNk7-vRW8_zf3s2kPvRBsbvEs0_gY6g-U,208025
309
336
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_large_search_space.json,sha256=PCUg32sSgMbrLrZu2QVV6IyaUyNokUHq3CjS0_0y3uo,3292
310
337
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_medium_search_space.json,sha256=ARIW4gkMZfCgjIJVTSUfzJVH4qc6dWmxdJFWSSXAFmA,3261
311
338
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_small_search_space.json,sha256=IXoaCZ0heGqduiQKkR-sizbwR1151y9ZeDKqTYVlvPQ,2975
@@ -322,7 +349,7 @@ google_cloud_pipeline_components/preview/automl/vision/data_converter.py,sha256=
322
349
  google_cloud_pipeline_components/preview/automl/vision/json_utils.py,sha256=u101hWM6zpknKIQPk387feW_1HE6TI1FeckKL7e-6QA,6001
323
350
  google_cloud_pipeline_components/preview/custom_job/__init__.py,sha256=ls8RaNhWZQDcsh4JVaIky16Lu60bjaGyfJ3ADRHk1XU,1295
324
351
  google_cloud_pipeline_components/preview/custom_job/component.py,sha256=Br1mhG3adxGl-bhWBXDiPkWvPhNZPhGQZcJlh_yicK4,7556
325
- google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=6JkjGAXei9ON5M3h4Wp4WOJJt3ZashOp8NxOcca9vts,16579
352
+ google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=517agkrCR5HXW2HjODUri-K7DXHFjw7vAEGzErVwR1E,18090
326
353
  google_cloud_pipeline_components/preview/dataflow/__init__.py,sha256=74-o9aye0R356KRmf5sBeXZ3OkBWEn62pywrclsEIW4,773
327
354
  google_cloud_pipeline_components/preview/llm/__init__.py,sha256=acmo31OFe-d7Ubo5FC2baLwxORFQzLtLdm8o5cO15qY,996
328
355
  google_cloud_pipeline_components/preview/llm/infer/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
@@ -330,7 +357,7 @@ google_cloud_pipeline_components/preview/llm/infer/component.py,sha256=p6gnwCjex
330
357
  google_cloud_pipeline_components/preview/llm/rlaif/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
331
358
  google_cloud_pipeline_components/preview/llm/rlaif/component.py,sha256=F4uzuz2pcLDd5IJ6--IkZf2dcmimiYfCivwmPwL_QIg,10801
332
359
  google_cloud_pipeline_components/preview/llm/rlhf/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
333
- google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=HQmAOmg45KpCGeRxDbp__RvIu6J_9RQ-_vlnDE6yxEU,15537
360
+ google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=9XpSVUga81GTqkn4qMBddhc41IzY0-p4IBC4UFP50G4,15339
334
361
  google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=n076N7S2HEdMuSZ8cyKM6acjCjslOHjCx4SR49asRME,2121
335
362
  google_cloud_pipeline_components/preview/model_evaluation/data_bias_component.py,sha256=YiwkWfbGymX_lDIg_x7AP6nYMm3MQp_NgV8xuSZxCpU,5791
336
363
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_component.py,sha256=XWrI1inQ9hKixFrp2LUdgu7hONYUvbsxv2GXZ-UTkCY,7450
@@ -338,32 +365,34 @@ google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_gr
338
365
  google_cloud_pipeline_components/preview/model_evaluation/model_bias_component.py,sha256=R8WhT8jf_OOpMuABRh2BYTDEcfiGAf6VA-vFgiTymYY,6674
339
366
  google_cloud_pipeline_components/preview/model_evaluation/model_evaluation_import_component.py,sha256=ePHbJqWYbZR5wCgJ8aVgDrOcWSoAiVq7df6HxTw1gdY,8118
340
367
  google_cloud_pipeline_components/preview/model_evaluation/utils.py,sha256=oRlEvA3zMSTzgxJklZD0A-BzFDx0-PsBHBXZ4kmaREY,7539
368
+ google_cloud_pipeline_components/preview/starry_net/__init__.py,sha256=yEpcicPBsGqgahrCtcJ06a_7E2pUgdp32U0yWwFRy7E,796
369
+ google_cloud_pipeline_components/preview/starry_net/component.py,sha256=SdmUfL7xZfK8yWOuVqDczqTqJMShAga3rJxgj4mFCxE,24424
341
370
  google_cloud_pipeline_components/proto/__init__.py,sha256=aiPUc6gpQwG9cRTYfw3ChFCJfDr3vAIsm2eMYUDJjJQ,661
342
371
  google_cloud_pipeline_components/proto/gcp_resources_pb2.py,sha256=ssNNm4zjiWbuBUS7IH6kyrvvfmcC_Z5F7hOAuQe_YLk,2134
343
- google_cloud_pipeline_components/proto/task_error_pb2.py,sha256=cs2dw3NxulXQNCEVEkL6RUmQmDPKhKl4YCMKm4hNXIs,1299
372
+ google_cloud_pipeline_components/proto/task_error_pb2.py,sha256=PPz4luEm3Pa3YDn4mtpqEPl8QVSFa44pV8W2KbWRq1I,1235
344
373
  google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=RGyD_xJ9C_YmUCqgqifnY4HF8Y8kkIHzLcpbbqeXUEw,9939
345
374
  google_cloud_pipeline_components/types/__init__.py,sha256=1WFkL49QEy-gNb6ywQOE4yZkD7DoULAeiL1tLdb3S28,606
346
375
  google_cloud_pipeline_components/types/artifact_types.py,sha256=zvwvzRuFb_s1VS1mtKkltOOACATJk-kG7dVFOUasfw4,23725
347
376
  google_cloud_pipeline_components/v1/__init__.py,sha256=E1Fie3Gq3KKLHEBGUUBeuao-Eo1uwuBfAWWhx2siwaE,765
348
377
  google_cloud_pipeline_components/v1/automl/__init__.py,sha256=l8whL8MMhZ-KMyacLpGzO-5cNxxD2wUW6PtMVx0C_mI,631
349
378
  google_cloud_pipeline_components/v1/automl/forecasting/__init__.py,sha256=FVS4qHJEuAxXZuW9ffOD16_-T0xwaUUBh2j1d4AF8HQ,1488
350
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=MKyHNlM5pgZ-FAOs9TjPq3dxPhPjHDCzc2TFMEbB9Ho,51452
351
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=HMR59BvlfnMKup8zzB0UypL8dsTZpjARRRmZRXMr34c,242529
352
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=X4S_rHfbhhMOTLOvCxh5NCCJUvLL-dnEXQjG2FIJQbA,93654
353
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=hIrhfw5a5RyMvp_UutZSxxSg_n255_6uOGdL2qgQTF4,8815
354
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=Cpf0f5AXyROtIobnaVqUqbqHoKGy_UDEIuWceWANJJE,143006
379
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=U9rbX4SlR1sQ9Tepirz_CuimPLzeAB4iBXbZGekA4js,51452
380
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=Rn13uCebMXeFgOGdbqN5w1tf3dpWdhVBbFE3Yq30ZxA,242529
381
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=AMD1TulEaBFfaa5i98oVyi4xNDm29STGvVKFhWWEmR0,93654
382
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=yK0NWRnMyhkjGzIHY9RsWEhgcAnf5dln_cPFP6zg-ZI,8815
383
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=U6cvrLduqXYd3b8cgy4E1f4T2zHsYPUDm9y-HgdsPe0,143006
355
384
  google_cloud_pipeline_components/v1/automl/forecasting/utils.py,sha256=Q0SxHlj2jhlpX-buOkxZqDL0wN8Si2-f5iMo08w54ms,14855
356
385
  google_cloud_pipeline_components/v1/automl/tabular/__init__.py,sha256=Clqtp6KThsxtvgu6Egj-dbkftci-VWDSKXXo_T6bTv8,2480
357
- google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=6u0d5gEDvd-DV6ZUjsOmVDaob0je26goe6s41pUz5SE,500714
358
- google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=SoPLL7PgENmKrVCKd_IHamSV9-8xY46SadGeZOtGKQo,6708
359
- google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=C8bT_flee84RdX4D2Wj7virYy3RI1V9bVQmuEGOZz5A,6935
360
- google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=RA6MRiNJ45kWRKf-NS-p5ekhXhtBs5pcq_6nqIDKLjA,3108
361
- google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=uo07x13AkxN2nofjmx-vJjy-FpxzNivDdXwJb71H8dw,1333
362
- google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=YgN9KfvQIVjHblJjDHEdIgaIZCZyI5_dy52TxSyk3Fg,5571
363
- google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=A5HZuuEXo8Z0Fu1Ht9-Nw5oLKOadK4RBBu29nN_bDe4,7761
364
- google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=5cBeSJy_AfHEPc9PT3Q3meZaadUo5jRgNX_HKj6htNo,13367
365
- google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=f_x9pJMJKElaDW3eLMVHNMQRgMVGtZkUUgjkXRJC58w,12202
366
- google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=jLJIpNaS9gPt1-v5-df06_fGnfJjZvcVOX5CzBQYBAc,8241
386
+ google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=iB9P3cOpY3XVgkkhxKGrdWRf6d1A3_Ve5CMwqH_oi5U,500714
387
+ google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=nxrrm-F8z20yKFl53zWlagkm9cOzKppH5Avvow3ByR4,6708
388
+ google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=K3wYQSTJ24uCIYEBcOCK55pxBWdU-TSb-hKL6JBvX8w,6935
389
+ google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=ZPKkDHYLbL0rcnGb5xhol8sU5w8AkXuptOC_a-m9zUg,3108
390
+ google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=7tN1RgV2e4TQo0zmmvDWpLzCNTjmdNhjmUd5oKe-U-s,1333
391
+ google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=ZTxStFDoHrJk-AfGbPlzFku-hCunuBgcEyuItIBRQAY,5571
392
+ google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=bBT6PIAAZL6qDapgnIfYDgLmKSyBU-CGtCDdnNfhiVs,7761
393
+ google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=XEhK9kpr2sm56iSnUGHOvrnpMw1UAo6XrCQklxs8tFo,13367
394
+ google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=Mja0_6rdbt7_VDelOUvUO2ia2-CxXi6oMI-VZVYnnIM,12202
395
+ google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=Bd71LbIhBgbeAkCXksgYM7BMGoESgP6tMYsPlP-1scs,8241
367
396
  google_cloud_pipeline_components/v1/automl/tabular/utils.py,sha256=2iBuwuUXfDKhZA1nfhfvl_IcnI4j0uesR4TbM9W13uU,74625
368
397
  google_cloud_pipeline_components/v1/automl/tabular/deprecated/default_pipeline.json,sha256=r9w-yavDpzGQX94geZ4q58aJdQdn2VvCm14IsNFIZyQ,321170
369
398
  google_cloud_pipeline_components/v1/automl/training_job/__init__.py,sha256=oCltxPx9ycdB2VJYLTNx3_o5t1zBXJFjNUOFFpoADwE,1803
@@ -433,8 +462,8 @@ google_cloud_pipeline_components/v1/bigquery/predict_model/component.py,sha256=1
433
462
  google_cloud_pipeline_components/v1/bigquery/query_job/__init__.py,sha256=Ot_1BluGAMGP2l6lok-ksqUrcFegEuuvBnEFHcGjydI,667
434
463
  google_cloud_pipeline_components/v1/bigquery/query_job/component.py,sha256=100KwAgJZ8fQrSCfy8oMwjghsO9HICvQRHOQjDwqh_I,5187
435
464
  google_cloud_pipeline_components/v1/custom_job/__init__.py,sha256=qxHupfqqpAQ3sK3Pp7pKNGfPKsS4qb1E9xM067U5MMw,1278
436
- google_cloud_pipeline_components/v1/custom_job/component.py,sha256=vluHmVr_7jqJgx4t9n8HE2dHhxjZRtgT05sTa-95Pvw,6070
437
- google_cloud_pipeline_components/v1/custom_job/utils.py,sha256=9KGLjblWqfLEZVDGwDo1M-bliBJ0lg97MejUQSHXI8Q,15466
465
+ google_cloud_pipeline_components/v1/custom_job/component.py,sha256=lf8PYIfYMlSxr9ij-XOicnZ4O2TvunWiwuccbx4o8kI,7010
466
+ google_cloud_pipeline_components/v1/custom_job/utils.py,sha256=b6g5YvavAVCNUkYJnMLa1ohjbjx3CmFH18V6hjiDHNY,16457
438
467
  google_cloud_pipeline_components/v1/dataflow/__init__.py,sha256=ZPJGssKq2P5iwFY_I68gZPoXSPHVNYQ59nVlA8mOtOo,1063
439
468
  google_cloud_pipeline_components/v1/dataflow/flex_template/__init__.py,sha256=uG42x7_0zehtVV7f_fHvPHBJ48aqi3jJwLY6tplH8jk,669
440
469
  google_cloud_pipeline_components/v1/dataflow/flex_template/component.py,sha256=C9oHSlOwh0fTUPN9b2u7vNvM2NbkWT-FX82kPOKkzLc,11701
@@ -515,7 +544,7 @@ google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_p
515
544
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py,sha256=LlMSMVbiZGXOZo4SqEQZZu9GQWWzHnwhrygwmDkqVdA,42457
516
545
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py,sha256=wEu67EPXb9x9PcYMYmnuETKbAz_lP5Kewv439IiFxIM,51226
517
546
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=vF_EOPg7S3UCTCNw6GrhQz_Sn8ctPZ-JpJEt6JlSF3Y,12036
518
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=qb4vERcjiDOKUdWfHUjeLdRU-iFNKxNoBs4kYOBMacQ,11584
547
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=bDY4Ad0l1PZ9_e2ZdjMQV7aY1_feUaQa9z-cbED0foc,12591
519
548
  google_cloud_pipeline_components/v1/model_evaluation/forecasting_component.py,sha256=gOnvKAJWa3velczeuVBCzW6b_tcc2v_lNFqHXGhjD44,10017
520
549
  google_cloud_pipeline_components/v1/model_evaluation/regression_component.py,sha256=eFrjrKQot3-SlRCoKoTOEsyp2Xj0GfDtrjpxTDKAHYY,9117
521
550
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=57gYyoAJwLIeXoLTTyVqOWgkj7dlUP4IKM4OmMabCRM,828
@@ -525,8 +554,8 @@ google_cloud_pipeline_components/v1/vertex_notification_email/__init__.py,sha256
525
554
  google_cloud_pipeline_components/v1/vertex_notification_email/component.py,sha256=Dau8ZI0mzLBnLOUBQm6EtK8gbtX1u57t76Ud5qlg9xc,2163
526
555
  google_cloud_pipeline_components/v1/wait_gcp_resources/__init__.py,sha256=w6dfz-rYsYnxFapRH1Dix3GVz0mhPW0m1IVpE6z8jbg,878
527
556
  google_cloud_pipeline_components/v1/wait_gcp_resources/component.py,sha256=Nsfj5c3eeZq83fHLvv2IlpK4jrjxLxRksFYOl5W6JnA,2468
528
- google_cloud_pipeline_components-2.14.1.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
529
- google_cloud_pipeline_components-2.14.1.dist-info/METADATA,sha256=yvx4vv0aFIKrUgaHN2ZkMzX0WycHOp5O5aGHWzNED3Y,5862
530
- google_cloud_pipeline_components-2.14.1.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
531
- google_cloud_pipeline_components-2.14.1.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
532
- google_cloud_pipeline_components-2.14.1.dist-info/RECORD,,
557
+ google_cloud_pipeline_components-2.16.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
558
+ google_cloud_pipeline_components-2.16.0.dist-info/METADATA,sha256=H6bG0jm2R4hVCnOEdxW8oFXy7zgL7s3Nu5aTt1gCz2k,5782
559
+ google_cloud_pipeline_components-2.16.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
560
+ google_cloud_pipeline_components-2.16.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
561
+ google_cloud_pipeline_components-2.16.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.0)
2
+ Generator: bdist_wheel (0.44.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,208 +0,0 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
-
16
- from typing import List, Optional
17
-
18
- from google_cloud_pipeline_components import _image
19
- from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
20
- from google_cloud_pipeline_components.types.artifact_types import ForecastingMetrics
21
- from google_cloud_pipeline_components.types.artifact_types import RegressionMetrics
22
- from google_cloud_pipeline_components.types.artifact_types import VertexModel
23
- from kfp import dsl
24
- from kfp.dsl import Input
25
- from kfp.dsl import Metrics
26
-
27
-
28
- @dsl.container_component
29
- def model_evaluation_import(
30
- model: Input[VertexModel],
31
- gcp_resources: dsl.OutputPath(str),
32
- evaluation_resource_name: dsl.OutputPath(str),
33
- metrics: Optional[Input[Metrics]] = None,
34
- row_based_metrics: Optional[Input[Metrics]] = None,
35
- problem_type: Optional[str] = None,
36
- classification_metrics: Optional[Input[ClassificationMetrics]] = None,
37
- forecasting_metrics: Optional[Input[ForecastingMetrics]] = None,
38
- regression_metrics: Optional[Input[RegressionMetrics]] = None,
39
- text_generation_metrics: Optional[Input[Metrics]] = None,
40
- question_answering_metrics: Optional[Input[Metrics]] = None,
41
- summarization_metrics: Optional[Input[Metrics]] = None,
42
- explanation: Optional[Input[Metrics]] = None,
43
- feature_attributions: Optional[Input[Metrics]] = None,
44
- embedding_metrics: Optional[Input[Metrics]] = None,
45
- display_name: str = "",
46
- dataset_path: str = "",
47
- dataset_paths: List[str] = [],
48
- dataset_type: str = "",
49
- ):
50
- # fmt: off
51
- """Imports a model evaluation artifact to an existing Vertex model with
52
- ModelService.ImportModelEvaluation.
53
-
54
- For more details, see
55
- https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.models.evaluations
56
- One of the four metrics inputs must be provided, metrics & problem_type,
57
- classification_metrics, regression_metrics, or forecasting_metrics.
58
-
59
- Args:
60
- model: Vertex model resource that will be the parent resource of the
61
- uploaded evaluation.
62
- metrics: Path of metrics generated from an evaluation component.
63
- row_based_metrics:
64
- Path of row_based_metrics generated from an evaluation component.
65
- problem_type: The problem type of the metrics being imported to the
66
- VertexModel. `classification`, `regression`, `forecasting`,
67
- `text-generation`, `question-answering`, and `summarization` are the
68
- currently supported problem types. Must be provided when `metrics` is
69
- provided.
70
- classification_metrics: google.ClassificationMetrics artifact generated from
71
- the ModelEvaluationClassificationOp component.
72
- forecasting_metrics: google.ForecastingMetrics artifact generated from
73
- the ModelEvaluationForecastingOp component.
74
- regression_metrics: google.ClassificationMetrics artifact generated from
75
- the ModelEvaluationRegressionOp component.
76
- text_generation_metrics: system.Metrics artifact generated from
77
- the LLMEvaluationTextGenerationOp component. Subject to change to
78
- google.TextGenerationMetrics.
79
- question_answering_metrics: system.Metrics artifact generated from
80
- the LLMEvaluationTextGenerationOp component. Subject to change to
81
- google.QuestionAnsweringMetrics.
82
- summarization_metrics: system.Metrics artifact generated from
83
- the LLMEvaluationTextGenerationOp component. Subject to change to
84
- google.SummarizationMetrics.
85
- explanation: Path for model explanation metrics generated from an evaluation
86
- component.
87
- feature_attributions: The feature attributions metrics artifact generated
88
- from the feature attribution component.
89
- embedding_metrics: The embedding metrics artifact generated from the
90
- embedding retrieval metrics component.
91
- display_name: The display name for the uploaded model evaluation resource.
92
- """
93
- # fmt: on
94
- return dsl.ContainerSpec(
95
- image=_image.GCPC_IMAGE_TAG,
96
- command=[
97
- "python3",
98
- "-u",
99
- "-m",
100
- "google_cloud_pipeline_components.container._implementation.model_evaluation.import_model_evaluation",
101
- ],
102
- args=[
103
- dsl.IfPresentPlaceholder(
104
- input_name="metrics",
105
- then=[
106
- "--metrics",
107
- metrics.uri,
108
- "--metrics_explanation",
109
- metrics.metadata["explanation_gcs_path"],
110
- ],
111
- ),
112
- dsl.IfPresentPlaceholder(
113
- input_name="row_based_metrics",
114
- then=[
115
- "--row_based_metrics",
116
- row_based_metrics.uri,
117
- ],
118
- ),
119
- dsl.IfPresentPlaceholder(
120
- input_name="explanation",
121
- then=[
122
- "--explanation",
123
- explanation.metadata["explanation_gcs_path"],
124
- ],
125
- ),
126
- dsl.IfPresentPlaceholder(
127
- input_name="classification_metrics",
128
- then=[
129
- "--classification_metrics",
130
- classification_metrics.uri,
131
- ],
132
- ),
133
- dsl.IfPresentPlaceholder(
134
- input_name="forecasting_metrics",
135
- then=[
136
- "--forecasting_metrics",
137
- forecasting_metrics.uri,
138
- ],
139
- ),
140
- dsl.IfPresentPlaceholder(
141
- input_name="regression_metrics",
142
- then=[
143
- "--regression_metrics",
144
- regression_metrics.uri,
145
- ],
146
- ),
147
- dsl.IfPresentPlaceholder(
148
- input_name="text_generation_metrics",
149
- then=[
150
- "--text_generation_metrics",
151
- text_generation_metrics.uri,
152
- ],
153
- ),
154
- dsl.IfPresentPlaceholder(
155
- input_name="question_answering_metrics",
156
- then=[
157
- "--question_answering_metrics",
158
- question_answering_metrics.uri,
159
- ],
160
- ),
161
- dsl.IfPresentPlaceholder(
162
- input_name="summarization_metrics",
163
- then=[
164
- "--summarization_metrics",
165
- summarization_metrics.uri,
166
- ],
167
- ),
168
- dsl.IfPresentPlaceholder(
169
- input_name="feature_attributions",
170
- then=[
171
- "--feature_attributions",
172
- feature_attributions.uri,
173
- ],
174
- ),
175
- dsl.IfPresentPlaceholder(
176
- input_name="embedding_metrics",
177
- then=[
178
- "--embedding_metrics",
179
- embedding_metrics.uri,
180
- ],
181
- ),
182
- dsl.IfPresentPlaceholder(
183
- input_name="problem_type",
184
- then=[
185
- "--problem_type",
186
- problem_type,
187
- ],
188
- ),
189
- "--display_name",
190
- display_name,
191
- "--dataset_path",
192
- dataset_path,
193
- "--dataset_paths",
194
- dataset_paths,
195
- "--dataset_type",
196
- dataset_type,
197
- "--pipeline_job_id",
198
- dsl.PIPELINE_JOB_ID_PLACEHOLDER,
199
- "--pipeline_job_resource_name",
200
- dsl.PIPELINE_JOB_RESOURCE_NAME_PLACEHOLDER,
201
- "--model_name",
202
- model.metadata["resourceName"],
203
- "--gcp_resources",
204
- gcp_resources,
205
- "--evaluation_resource_name",
206
- evaluation_resource_name,
207
- ],
208
- )