google-cloud-pipeline-components 2.18.0__py3-none-any.whl → 2.20.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 (64) hide show
  1. google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py +2 -2
  2. google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py +1 -1
  3. google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py +7 -4
  4. google_cloud_pipeline_components/_implementation/starry_net/version.py +3 -3
  5. google_cloud_pipeline_components/container/v1/custom_job/remote_runner.py +13 -3
  6. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py +1 -1
  7. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py +2 -2
  8. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py +2 -2
  9. google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml +34 -34
  10. google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml +34 -34
  11. google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml +34 -34
  12. google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml +34 -34
  13. google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py +1 -1
  14. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml +39 -39
  15. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml +41 -41
  16. google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py +2 -2
  17. google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py +2 -2
  18. google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml +4 -4
  19. google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py +3 -3
  20. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py +2 -2
  21. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml +15 -15
  22. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py +2 -2
  23. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml +13 -13
  24. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py +2 -2
  25. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml +14 -14
  26. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py +2 -2
  27. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml +13 -13
  28. google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml +14 -14
  29. google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml +13 -13
  30. google_cloud_pipeline_components/proto/README.md +49 -0
  31. google_cloud_pipeline_components/proto/gcp_resources.proto +25 -0
  32. google_cloud_pipeline_components/proto/task_error.proto +11 -0
  33. google_cloud_pipeline_components/proto/template_metadata.proto +323 -0
  34. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml +10 -10
  35. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml +31 -31
  36. google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml +13 -13
  37. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py +3 -3
  38. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml +14 -14
  39. google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml +37 -37
  40. google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py +2 -2
  41. google_cloud_pipeline_components/v1/automl/tabular/ensemble.py +2 -2
  42. google_cloud_pipeline_components/v1/automl/tabular/finalizer.py +1 -1
  43. google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py +1 -1
  44. google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py +1 -1
  45. google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py +2 -2
  46. google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py +2 -2
  47. google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py +1 -1
  48. google_cloud_pipeline_components/v1/automl/tabular/transform.py +2 -2
  49. google_cloud_pipeline_components/v1/custom_job/component.py +3 -0
  50. google_cloud_pipeline_components/v1/custom_job/utils.py +3 -0
  51. google_cloud_pipeline_components/version.py +1 -1
  52. {google_cloud_pipeline_components-2.18.0.dist-info → google_cloud_pipeline_components-2.20.0.dist-info}/METADATA +18 -21
  53. {google_cloud_pipeline_components-2.18.0.dist-info → google_cloud_pipeline_components-2.20.0.dist-info}/RECORD +56 -60
  54. {google_cloud_pipeline_components-2.18.0.dist-info → google_cloud_pipeline_components-2.20.0.dist-info}/WHEEL +1 -1
  55. google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/__init__.py +0 -14
  56. google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/component.py +0 -208
  57. google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_classification_pipeline.py +0 -180
  58. google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_text_generation_pipeline.py +0 -178
  59. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/__init__.py +0 -20
  60. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py +0 -13
  61. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py +0 -109
  62. google_cloud_pipeline_components/proto/preflight_validations_pb2.py +0 -58
  63. {google_cloud_pipeline_components-2.18.0.dist-info → google_cloud_pipeline_components-2.20.0.dist-info}/LICENSE +0 -0
  64. {google_cloud_pipeline_components-2.18.0.dist-info → google_cloud_pipeline_components-2.20.0.dist-info}/top_level.txt +0 -0
@@ -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=guEtO5rUz5sHqasbxGaQK-7Gq695wptye2eCEDcNpaA,678
5
+ google_cloud_pipeline_components/version.py,sha256=eR9IUlfOzlkXbM7FIiFbegLXcNGhZ_J2ClGNtzm9-Oc,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
@@ -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
@@ -91,14 +89,14 @@ google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_prepr
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
93
91
  google_cloud_pipeline_components/_implementation/starry_net/__init__.py,sha256=CSopfSpiwuix5UEjjVQWINND1-0uTReQAZ6ZA6Y9m5U,2502
94
- google_cloud_pipeline_components/_implementation/starry_net/version.py,sha256=hptAsa5Vzj3QE7_1aGjqNkFI_eoFDjBI0fRuTbyYiAg,778
92
+ google_cloud_pipeline_components/_implementation/starry_net/version.py,sha256=UF3VQf3Jz9An6E7DsKmPr7_rDZBQLas0AkI6WAKTjbQ,778
95
93
  google_cloud_pipeline_components/_implementation/starry_net/dataprep/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
96
94
  google_cloud_pipeline_components/_implementation/starry_net/dataprep/component.py,sha256=_n2EB1fC6xonSoLAWtNbnbQkVenGmKXy84dievBLQY4,7984
97
95
  google_cloud_pipeline_components/_implementation/starry_net/evaluation/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
98
96
  google_cloud_pipeline_components/_implementation/starry_net/evaluation/component.py,sha256=SlNxkVcaxmJRiOFxPjL71amNrE4R0J2UGl5xdHAZUgU,819
99
97
  google_cloud_pipeline_components/_implementation/starry_net/evaluation/evaluation.yaml,sha256=qEcFeTONUU4HgiuPrqb8HkEPpkQARl6xIzGkRVuwogE,10283
100
98
  google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
101
- google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py,sha256=RD9oykj5ZPtShddhdWtHU2W1DCTr8BT9TrWQZcUhCq4,2213
99
+ google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py,sha256=tuPSi9vYlkzMde2g194H_gKFmb3gF4H1RK-GMQLyBKY,2213
102
100
  google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
103
101
  google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/component.py,sha256=Vv5_7aXU3mNw8JYFofioGMgik_qvokzoFSWgtJqVCcs,2734
104
102
  google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
@@ -106,7 +104,7 @@ google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/co
106
104
  google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
107
105
  google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/component.py,sha256=MEtS4QXWZgoVi5K9LlEv6WQ7teXR-UbzCOnMEjkroDQ,2638
108
106
  google_cloud_pipeline_components/_implementation/starry_net/set_test_set/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
109
- google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py,sha256=6OEzrA5-VTJMVR6udi9sG_-GjygkzX1MeiypWLILxcM,1686
107
+ google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py,sha256=ZkYQlfIB78V2K9uhItTkHaD_gCzyn-89IiNMWyhikA4,1686
110
108
  google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
111
109
  google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/component.py,sha256=xjXUunPDU0HmkTrPzWl9hfcQHcgdEtnCxYEEuS9sPd0,2423
112
110
  google_cloud_pipeline_components/_implementation/starry_net/set_train_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
@@ -114,7 +112,7 @@ google_cloud_pipeline_components/_implementation/starry_net/set_train_args/compo
114
112
  google_cloud_pipeline_components/_implementation/starry_net/train/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
115
113
  google_cloud_pipeline_components/_implementation/starry_net/train/component.py,sha256=1dl7jP7AZaZA9LOoRbQCTtXMZlyd6j9ua7AcXIaG6vk,10997
116
114
  google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
117
- google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py,sha256=Okz_ZuiZ9084wqjzurkIez-Y6FDugdz0l_iTPMj1z_I,2257
115
+ google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py,sha256=OAp_2g9piPxZG8GzSVwvfAr6FafTy_-oMgA4I_6-ev0,2397
118
116
  google_cloud_pipeline_components/_implementation/starry_net/upload_model/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
119
117
  google_cloud_pipeline_components/_implementation/starry_net/upload_model/component.py,sha256=P-gCilLSI8ypUDwRFSZKmkS0FS9JBXr6vk7_qLDTidE,826
120
118
  google_cloud_pipeline_components/_implementation/starry_net/upload_model/upload_model.yaml,sha256=6eTzVJ7bvp67NjN0Y3HwZWdgYdswJTVXiQNSdOtSh_E,1462
@@ -238,7 +236,7 @@ google_cloud_pipeline_components/container/v1/bigquery/utils/__init__.py,sha256=
238
236
  google_cloud_pipeline_components/container/v1/bigquery/utils/bigquery_util.py,sha256=FWiZqhSZOmtKi-wdFDGeqYSNc0Y-4R6xfiz13915fWA,12236
239
237
  google_cloud_pipeline_components/container/v1/custom_job/__init__.py,sha256=KK7TRANpB8dE3H8VNxzSUDIVWaLBHNM9BfDF8JvcwXk,686
240
238
  google_cloud_pipeline_components/container/v1/custom_job/launcher.py,sha256=oVtxYK-67fpq3SWxh1e5yVhJBT8m5HtxUHcc2MwnEQo,1917
241
- google_cloud_pipeline_components/container/v1/custom_job/remote_runner.py,sha256=Qt0lMUlvqn9CPaPwp9uV1l_uHzIgvaJ8y3XEyqmJW9s,3586
239
+ google_cloud_pipeline_components/container/v1/custom_job/remote_runner.py,sha256=NfeVoHr4Hsm1gC_onRgyvb4YHph3IqfnJBDCeTQz7pw,4084
242
240
  google_cloud_pipeline_components/container/v1/dataflow/__init__.py,sha256=jEGX3Bu1tJZ0jZbLIS-PSKGqP77BLMtKwCjosm-hBMI,662
243
241
  google_cloud_pipeline_components/container/v1/dataflow/dataflow_launcher.py,sha256=0XDqt8bN4-0y5jGjXeh8aWf81wUse-4J04NrVu0orQo,3303
244
242
  google_cloud_pipeline_components/container/v1/dataflow/dataflow_python_job_remote_runner.py,sha256=VBpBsnRMW6MX7ZFkZl8JjYHe4yi1Zc8b2TejigaYo7g,7415
@@ -306,35 +304,35 @@ google_cloud_pipeline_components/container/v1/wait_gcp_resources/remote_runner.p
306
304
  google_cloud_pipeline_components/preview/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
307
305
  google_cloud_pipeline_components/preview/automl/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
308
306
  google_cloud_pipeline_components/preview/automl/forecasting/__init__.py,sha256=Y-PNjGWILh5wMGQLmvaIukfr9KC9oD2GQLhfJDofrAQ,3532
309
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=Daf1vF9MID09QzbjMBo7D_PxVMOlR69WmoAU8fchJI8,5655
310
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=jVnGXr0UDXxtfnRmcW_Bhc11xPSPq40VBtV-mQ5SwWA,6564
311
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=bIk9u0XLkDwtObjEj5ln0uF_0xl9XvQ8Dyp4GFx-ihE,6376
312
- google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=Lw1nA2mmm2FUWbST6gvfzAbsUubIpxHJR1xAe6dBFKA,357434
313
- google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=y1LHgpeTIjTYx7fq5KPVQxEBFF-9UnsWWhCNAajpicU,355613
314
- google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=HISF9DBaxbO6BavOIGp4-jDV_OX0nq207Nv7eGc9rkg,354719
315
- google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=0c34cziCbnWjZUyEoWyO_JNVJ3Hn1PJqittb2bHkLFg,357509
307
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=RCw-eWNrUxtOIu90yuRbqvrKE_BtuPpGTxaf5dPD59E,5655
308
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=7IM1jXeMPYAgdzVZGGCex6gkBUgpKU4tY2mx03CPb0U,6564
309
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=oKbrc1F7DAWXvdeFv5EcMxpoC0ktuB8f5mMLznhLUIk,6376
310
+ google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=T31MlTLbzfY6llLfSkOEant_LmeG8n1Hs0BFogx-Emw,357434
311
+ google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=i9I4yFhfvFmxqY6D0jDypZ9Rz6VQ-zJG-2_i9Wlm0qY,355613
312
+ google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=kSp5vJbgPn8P7HSf3yczbnWFNPTbjji_iKPcpZavhkE,354719
313
+ google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=yRkr_JEwlZkYM7IaQhVDIE1M9Y_vjC7iydBgscLciKw,357509
316
314
  google_cloud_pipeline_components/preview/automl/forecasting/utils.py,sha256=fet0opwz3FbuGpUOlm2AnwOI0PEk_wXjTBFqrF_2BNA,55547
317
315
  google_cloud_pipeline_components/preview/automl/tabular/__init__.py,sha256=jzu9udS0cH8lSSvgn3XerrKbs69GpMzI2NGSpNQmbcI,4247
318
- google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=oz3MoG8pYi8sAN_pJEDqH9FkuVrFrsy37x8N1TAUgCw,3643
319
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=PuimAqDG2W6hr0Qi7ptL2kpttUiZO_g84lXkQu-QigI,511441
320
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=SNtJgqYMHXGR44Y4zG8TelEA79vrCrnSTQAp7lpUpJ4,580670
321
- google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=ieiExVL0EsXNsrBxqOnWCOJBBTR8sF64oE81BeFqjL8,9629
322
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=Z5iF9r12MSeV7wLMvJWHRoFVftHysQKYtzNJTRQelSI,7546
323
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=JhMd71tr7ggeX5oAiy0a7I60NWNl1rvXepRSnNMnagU,75354
324
- google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=JXfGCoFRCJ67WH_2d-ZjjEje-v3MVYPyPk3mh5mbEWI,47372
325
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=E69ViiLuX-3iBxRA_G_jD53ZudTXLVXSz-orB8kdPjQ,9980
326
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=OwpSfWvF2FRJHWZDXOVp4DpZM7luknUKD-LGlWBDe_g,243042
327
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=eUWQdbhxet886rI1IXuwHZC9oopRkZ4xqRnvIsXb4n0,12748
328
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=sGmgyBn5-f-bPrwFhEjtDMQdkduP4rM32PqLRbntLwE,202129
316
+ google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=ILCM5rygS-zzOSQAsupYdDvaq57L5BUe64FdS7g2x7A,3643
317
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=DGLH9fX7dxETEJ5svINJWPQRv-TmnxLY9Y1YYzL03AM,511441
318
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=5D-IAYln92fiCejW0hNMa-hI37O_PBk-iGo1St9l9Bs,580670
319
+ google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=wO-bO9uWWIesMOJ8ooUCz4wrcavxP0E9CeqOMJWXqiU,9629
320
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=C2EF3vVgYQPZ2weOv0UH5eJrcmHgd7f3PqHJLAb80dI,7546
321
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=lLeZnBEKBvjihX4SyK7mJcHjZt7YulBF6Sdot4XSNC0,75354
322
+ google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=P84Jp3euyLgX90Y3Xp46ZC9VtAYUbAOidWWe2pEy3-k,47372
323
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=bQg1o5DscEv8h7nh9b0OdrYiQFiK210DPCY4YetDB-Q,9980
324
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=IwG2YZ2hcrbZy6iFfNWF2RAQ4sRJgBfGM5YB76MXJYU,243042
325
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=5v5eo8kKSJ_iVGRj431Q3ypmExPBmxokg4JRCQmDg90,12748
326
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=2pZp8Jy1Y1tZNNN1t993iruu6Wc5kMrh5N-uqeD6-Ns,202129
329
327
  google_cloud_pipeline_components/preview/automl/tabular/utils.py,sha256=X2iag9zQX490KMQf7e8AfzfwYTWq8bbtvnw0WpFxNj8,168318
330
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=nnOj5MFytJJB0m-RDdzBSQmjQrUZC-dxaeqo6TjKUQo,9975
331
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=0TX91rhTf-D5dFcRka-tOktGXu7N5zO8OH-vPiVkzN8,195050
332
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=a5FqkDl5VRmpEsDo7rbD2FeM7oAS_TCoAPJyWlnjiM8,11922
333
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=roDj4A_jLIVy8BTkRMEgWyM-jGdFV5vYb3wts-oqOBo,190786
328
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=-zTHv2jfWkJ_9nP3uD1QFmbYuj1JRvY6e6MpBEktIKc,9975
329
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=zKL0DbScVt7Tphd6v3rY9Bs-l7wTmLSeJZliyVGGVOQ,195050
330
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=MnIb3zgbuP06Wfq7MOK8mSBaD_dVY6nXVu1G_sB0DBY,11922
331
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=CvnHjwAeuKKl6de_DyKyVrv1K9lg593sRxMVbX8idx4,190786
334
332
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job.py,sha256=BYgs8CyzSObP6NeHbIXQaCV2Cgn2f0uJ47sxWHM6rT0,4787
335
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=aydCpusUkB5b5tknb-tIc2OQfaLt3eXpLn6Knr9HvOc,223562
333
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=nlLwQRBpdIEWvsdg4Y_MGcFyRBGOp2o_WXR7ahuIaoY,223562
336
334
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer.py,sha256=fpc36b4aiggwj7suMa3oCxcJbQoFQZ5H15eFeustDWc,2333
337
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=lO2p1smEQ7K3w9MDf-OHjfM_DOdJ_WRiZe1OhnVk7nM,208025
335
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=3Z2guWFj0nughs4XkTX3UxcUQlcIEMttqtotOZHA_Kg,208025
338
336
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_large_search_space.json,sha256=PCUg32sSgMbrLrZu2QVV6IyaUyNokUHq3CjS0_0y3uo,3292
339
337
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_medium_search_space.json,sha256=ARIW4gkMZfCgjIJVTSUfzJVH4qc6dWmxdJFWSSXAFmA,3261
340
338
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_small_search_space.json,sha256=IXoaCZ0heGqduiQKkR-sizbwR1151y9ZeDKqTYVlvPQ,2975
@@ -362,45 +360,43 @@ google_cloud_pipeline_components/preview/llm/rlhf/__init__.py,sha256=sb6SfJl6rt3
362
360
  google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=9XpSVUga81GTqkn4qMBddhc41IzY0-p4IBC4UFP50G4,15339
363
361
  google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=n076N7S2HEdMuSZ8cyKM6acjCjslOHjCx4SR49asRME,2121
364
362
  google_cloud_pipeline_components/preview/model_evaluation/data_bias_component.py,sha256=YiwkWfbGymX_lDIg_x7AP6nYMm3MQp_NgV8xuSZxCpU,5791
365
- google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=IjCIakZFh7KB6kmku7ztaH-qFm9LoEctwwMtxmDOg5g,11262
366
- google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=afS9-rkKbQHDwOldtFC8w7Xv9UOqIU-Xt6ZEim14fqg,10761
367
363
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_component.py,sha256=XWrI1inQ9hKixFrp2LUdgu7hONYUvbsxv2GXZ-UTkCY,7450
368
364
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_graph_component.py,sha256=jesgBUKbIB_qQoYb5-Bv_LBbFHl0tPyMlVFx-o1eE6k,13624
369
365
  google_cloud_pipeline_components/preview/model_evaluation/model_bias_component.py,sha256=R8WhT8jf_OOpMuABRh2BYTDEcfiGAf6VA-vFgiTymYY,6674
370
366
  google_cloud_pipeline_components/preview/model_evaluation/model_evaluation_import_component.py,sha256=ePHbJqWYbZR5wCgJ8aVgDrOcWSoAiVq7df6HxTw1gdY,8118
371
367
  google_cloud_pipeline_components/preview/model_evaluation/utils.py,sha256=oRlEvA3zMSTzgxJklZD0A-BzFDx0-PsBHBXZ4kmaREY,7539
372
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=ee_EyGhwqXIjR3Rx9t-o2gV9TssU-VErMU7LtDA7s9k,838
373
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
374
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=rymTHXZZCMFtwzf9qOjDx2qd2yCdTYzUO0kfja7kAiE,7055
375
368
  google_cloud_pipeline_components/preview/starry_net/__init__.py,sha256=yEpcicPBsGqgahrCtcJ06a_7E2pUgdp32U0yWwFRy7E,796
376
369
  google_cloud_pipeline_components/preview/starry_net/component.py,sha256=SdmUfL7xZfK8yWOuVqDczqTqJMShAga3rJxgj4mFCxE,24424
370
+ google_cloud_pipeline_components/proto/README.md,sha256=woU_Z4coJkfUT5zslydfkfWN9sOvH6zsLJTLxvacGUg,1858
377
371
  google_cloud_pipeline_components/proto/__init__.py,sha256=aiPUc6gpQwG9cRTYfw3ChFCJfDr3vAIsm2eMYUDJjJQ,661
372
+ google_cloud_pipeline_components/proto/gcp_resources.proto,sha256=SrIIV7hLhOCUvrWBtuc8fkHuOczftkKmlhyLAsDNuUw,764
378
373
  google_cloud_pipeline_components/proto/gcp_resources_pb2.py,sha256=ssNNm4zjiWbuBUS7IH6kyrvvfmcC_Z5F7hOAuQe_YLk,2134
379
- google_cloud_pipeline_components/proto/preflight_validations_pb2.py,sha256=ZZFTISXvqQl-284O_zPJrgXO4REPLwn3qxXg8BTJHM0,3056
374
+ google_cloud_pipeline_components/proto/task_error.proto,sha256=0-Wi6DOF3jWDSwvIFU3XPWrj--ArG10REng6OE3yiKg,283
380
375
  google_cloud_pipeline_components/proto/task_error_pb2.py,sha256=PPz4luEm3Pa3YDn4mtpqEPl8QVSFa44pV8W2KbWRq1I,1235
376
+ google_cloud_pipeline_components/proto/template_metadata.proto,sha256=RBsrMfjcmDK465l6f8thY2dj_HfXiBf6I5QO5BNhVYQ,10736
381
377
  google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=jAIJgc5UWYz8E0Vf3IbjPlyiWI3kCNYrJHyAUaQTpgc,10067
382
378
  google_cloud_pipeline_components/types/__init__.py,sha256=1WFkL49QEy-gNb6ywQOE4yZkD7DoULAeiL1tLdb3S28,606
383
379
  google_cloud_pipeline_components/types/artifact_types.py,sha256=zvwvzRuFb_s1VS1mtKkltOOACATJk-kG7dVFOUasfw4,23725
384
380
  google_cloud_pipeline_components/v1/__init__.py,sha256=E1Fie3Gq3KKLHEBGUUBeuao-Eo1uwuBfAWWhx2siwaE,765
385
381
  google_cloud_pipeline_components/v1/automl/__init__.py,sha256=l8whL8MMhZ-KMyacLpGzO-5cNxxD2wUW6PtMVx0C_mI,631
386
382
  google_cloud_pipeline_components/v1/automl/forecasting/__init__.py,sha256=FVS4qHJEuAxXZuW9ffOD16_-T0xwaUUBh2j1d4AF8HQ,1488
387
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=uhQr2hQYKV3syJP3-0bieuWwm3jbhB0uopXfp_4BGRU,51452
388
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=Xqr7I5_rrEwRgi7aqXmpOFU08A_VKwBg_ALTWDX6PUw,242529
389
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=sLeXhTqvmh87bSdrMFPRmpYmEG_iDig8-TqMAMa-eh0,93654
390
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=koPafI9QwpuyZzlZ3N5bvjN1tf8FZuKtAxYNTwOVHmo,8815
391
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=6yLNB5yELI_scYPRWdeGZcf9_-S5Ri6OXfqmDniETqs,143006
383
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=nvZG7UOtfBv_8Q96dbEoXoQw5NQnXXzepBjPUAuWOjQ,51452
384
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=xYZ5eG7IELFPGHhCZSw_WD-ySjod5eCG9md6NESmSB4,242529
385
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=XLVEb4_jhhE4bjyvO5xbSJ5qnM4-7b4SiBrN_xH16i8,93654
386
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=Fl480TQZ4PnvI-rsCI_o6besgHEOiI2p45FPeb5bjoQ,8815
387
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=ZQYdMMMXKgLvo3YrPA_bsLOMOoOzlwi0Fl50Eb_frzQ,143006
392
388
  google_cloud_pipeline_components/v1/automl/forecasting/utils.py,sha256=Q0SxHlj2jhlpX-buOkxZqDL0wN8Si2-f5iMo08w54ms,14855
393
389
  google_cloud_pipeline_components/v1/automl/tabular/__init__.py,sha256=Clqtp6KThsxtvgu6Egj-dbkftci-VWDSKXXo_T6bTv8,2480
394
- google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=fkyp8NgrDmPMgiw6TwubAGA-jmX7yHyHT2PoNzK52q8,500714
395
- google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=96J7alCi1YQRN1T6nznB_t9M3rFdaeqj7kNbujKD1g4,6708
396
- google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=S8PEq20HpIO-y0H4YqOFjf-KEKJbsJkDxbAjYFP2BUk,6935
397
- google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=hviZ-jcMDPhBGw1QzJhwJ-quwsocj0wPgCwULDzxdqg,3108
398
- google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=oosw6uABSmmmR1-Zj2IfZfeUI5LO3w07F8rN1P4yUCQ,1333
399
- google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=eBMi5Tx1lCEfGOafaCS5B4LLKrTBQsmvORvOH6PbUDU,5571
400
- google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=DZsm62cTleyd3h47g3BtlQyYt0VgPzkSY8z71XC6nJc,7761
401
- google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=HTlbQWeCmAEg4JgOwb7j0vj-7q01vRdI4IWGa4NW3Yo,13367
402
- google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=AiilKOhG0I5M1sA-NusUS-YNOdus6aC1rO1gIlo-UX0,12202
403
- google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=x1NWiRTgQhy7dsg_m3pnz47V3Y_40sps1hqgkj2NkBM,8241
390
+ google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=jnqwPrMvIY6vcNVEtfrje_u0VNdZqJ53eQD0Z1lPGZc,500714
391
+ google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=mracLKP3WPw-QvgE8_Cw9ZexcQu_CV0nqeRaRFR9XuE,6708
392
+ google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=YataJQ0FGcMGyO_wG2S23P2gANiqfnouwqArfAjeZZQ,6935
393
+ google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=kWXlhC5-NAImXv7YVQttijKaiJJBbBZnnPPY3ncJv6A,3108
394
+ google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=RflX_TvlVPcXsIqj239m2pOr_sKQtIP0pebVMAQx31Y,1333
395
+ google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=jRzBCkmiMmMkC3xvznMu1PAnY-Vbi03Kr-Gjjnx1mPo,5571
396
+ google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=VRihBsT7LeswSKXgSbvkEyiyxC4lj3xX5RvORf134R0,7761
397
+ google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=zrVX_OLpTjbjVf7KvgZWmMxqH_Du9HSiDJIPY_MVWQI,13367
398
+ google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=c2cIeMrWILlYmWKlr0I_WDz2HSQJiaFH6eGC0aEzb-0,12202
399
+ google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=ppApcYoHXOgRe88Obgw2_jwoJ9LFqSKPXTu_PYAbILM,8241
404
400
  google_cloud_pipeline_components/v1/automl/tabular/utils.py,sha256=ArCR1luEMRULJ7fSxvJdKhwb7bAi8ASMv8zlKGgz8-A,74660
405
401
  google_cloud_pipeline_components/v1/automl/tabular/deprecated/default_pipeline.json,sha256=r9w-yavDpzGQX94geZ4q58aJdQdn2VvCm14IsNFIZyQ,321170
406
402
  google_cloud_pipeline_components/v1/automl/training_job/__init__.py,sha256=oCltxPx9ycdB2VJYLTNx3_o5t1zBXJFjNUOFFpoADwE,1803
@@ -470,8 +466,8 @@ google_cloud_pipeline_components/v1/bigquery/predict_model/component.py,sha256=1
470
466
  google_cloud_pipeline_components/v1/bigquery/query_job/__init__.py,sha256=Ot_1BluGAMGP2l6lok-ksqUrcFegEuuvBnEFHcGjydI,667
471
467
  google_cloud_pipeline_components/v1/bigquery/query_job/component.py,sha256=100KwAgJZ8fQrSCfy8oMwjghsO9HICvQRHOQjDwqh_I,5187
472
468
  google_cloud_pipeline_components/v1/custom_job/__init__.py,sha256=qxHupfqqpAQ3sK3Pp7pKNGfPKsS4qb1E9xM067U5MMw,1278
473
- google_cloud_pipeline_components/v1/custom_job/component.py,sha256=QbBvpJgz1f5plLrD7zPZOplAInENhmUrpj-O6keqxyg,7329
474
- google_cloud_pipeline_components/v1/custom_job/utils.py,sha256=xYuDTLE9iI1-vyu_aW3sGfjIM6bvVcD6v2OmTAkVxfs,18011
469
+ google_cloud_pipeline_components/v1/custom_job/component.py,sha256=Me35howbkQi3nT2aT-4ihzmaAguWogTFk9qN5rV7FKo,7748
470
+ google_cloud_pipeline_components/v1/custom_job/utils.py,sha256=Js8Fy6Flb3z0fbhbDqVc6auTl_Qqwyu4ppBtddwr7dg,18418
475
471
  google_cloud_pipeline_components/v1/dataflow/__init__.py,sha256=ZPJGssKq2P5iwFY_I68gZPoXSPHVNYQ59nVlA8mOtOo,1063
476
472
  google_cloud_pipeline_components/v1/dataflow/flex_template/__init__.py,sha256=uG42x7_0zehtVV7f_fHvPHBJ48aqi3jJwLY6tplH8jk,669
477
473
  google_cloud_pipeline_components/v1/dataflow/flex_template/component.py,sha256=C9oHSlOwh0fTUPN9b2u7vNvM2NbkWT-FX82kPOKkzLc,11701
@@ -562,8 +558,8 @@ google_cloud_pipeline_components/v1/vertex_notification_email/__init__.py,sha256
562
558
  google_cloud_pipeline_components/v1/vertex_notification_email/component.py,sha256=Dau8ZI0mzLBnLOUBQm6EtK8gbtX1u57t76Ud5qlg9xc,2163
563
559
  google_cloud_pipeline_components/v1/wait_gcp_resources/__init__.py,sha256=w6dfz-rYsYnxFapRH1Dix3GVz0mhPW0m1IVpE6z8jbg,878
564
560
  google_cloud_pipeline_components/v1/wait_gcp_resources/component.py,sha256=Nsfj5c3eeZq83fHLvv2IlpK4jrjxLxRksFYOl5W6JnA,2468
565
- google_cloud_pipeline_components-2.18.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
566
- google_cloud_pipeline_components-2.18.0.dist-info/METADATA,sha256=QtGkvmHzgE553tHOdfaEBDaNo-OJXvnTKaHCc40d7PE,5956
567
- google_cloud_pipeline_components-2.18.0.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
568
- google_cloud_pipeline_components-2.18.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
569
- google_cloud_pipeline_components-2.18.0.dist-info/RECORD,,
561
+ google_cloud_pipeline_components-2.20.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
562
+ google_cloud_pipeline_components-2.20.0.dist-info/METADATA,sha256=F_C0fEYYV83Rmr0LJrKZmn0oNFhmSb7giQ4w_0K7V5w,5875
563
+ google_cloud_pipeline_components-2.20.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
564
+ google_cloud_pipeline_components-2.20.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
565
+ google_cloud_pipeline_components-2.20.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,14 +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
- """Google Cloud Pipeline Evaluation Import Evaluation Component."""
@@ -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
- )