google-cloud-pipeline-components 2.16.1__py3-none-any.whl → 2.18.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/llm/generated/refined_image_versions.py +1 -1
  2. google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/__init__.py +14 -0
  3. google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/component.py +208 -0
  4. google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/component.py +3 -0
  5. google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py +2 -4
  6. google_cloud_pipeline_components/_implementation/model_evaluation/version.py +1 -1
  7. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py +1 -1
  8. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py +2 -2
  9. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py +2 -2
  10. google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml +34 -34
  11. google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml +34 -34
  12. google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml +34 -34
  13. google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml +34 -34
  14. google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py +1 -1
  15. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml +39 -39
  16. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml +41 -41
  17. google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py +2 -2
  18. google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py +2 -2
  19. google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml +4 -4
  20. google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py +3 -3
  21. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py +2 -2
  22. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml +15 -15
  23. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py +2 -2
  24. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml +13 -13
  25. google_cloud_pipeline_components/preview/automl/tabular/utils.py +1 -1
  26. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py +2 -2
  27. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml +14 -14
  28. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py +2 -2
  29. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml +13 -13
  30. google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml +14 -14
  31. google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml +13 -13
  32. google_cloud_pipeline_components/preview/custom_job/__init__.py +9 -0
  33. google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_classification_pipeline.py +180 -0
  34. google_cloud_pipeline_components/preview/model_evaluation/evaluation_llm_text_generation_pipeline.py +178 -0
  35. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/__init__.py +20 -0
  36. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py +13 -0
  37. google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py +109 -0
  38. google_cloud_pipeline_components/proto/preflight_validations_pb2.py +58 -0
  39. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml +10 -10
  40. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml +31 -31
  41. google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml +13 -13
  42. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py +3 -3
  43. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml +14 -14
  44. google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml +37 -37
  45. google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py +2 -2
  46. google_cloud_pipeline_components/v1/automl/tabular/ensemble.py +2 -2
  47. google_cloud_pipeline_components/v1/automl/tabular/finalizer.py +1 -1
  48. google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py +1 -1
  49. google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py +1 -1
  50. google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py +2 -2
  51. google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py +2 -2
  52. google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py +1 -1
  53. google_cloud_pipeline_components/v1/automl/tabular/transform.py +2 -2
  54. google_cloud_pipeline_components/v1/automl/tabular/utils.py +1 -1
  55. google_cloud_pipeline_components/v1/custom_job/component.py +5 -2
  56. google_cloud_pipeline_components/v1/custom_job/utils.py +23 -0
  57. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py +2 -1
  58. google_cloud_pipeline_components/v1/model_evaluation/regression_component.py +1 -1
  59. google_cloud_pipeline_components/version.py +1 -1
  60. {google_cloud_pipeline_components-2.16.1.dist-info → google_cloud_pipeline_components-2.18.0.dist-info}/METADATA +23 -18
  61. {google_cloud_pipeline_components-2.16.1.dist-info → google_cloud_pipeline_components-2.18.0.dist-info}/RECORD +64 -56
  62. {google_cloud_pipeline_components-2.16.1.dist-info → google_cloud_pipeline_components-2.18.0.dist-info}/WHEEL +1 -1
  63. {google_cloud_pipeline_components-2.16.1.dist-info → google_cloud_pipeline_components-2.18.0.dist-info}/LICENSE +0 -0
  64. {google_cloud_pipeline_components-2.16.1.dist-info → google_cloud_pipeline_components-2.18.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.16.1
3
+ Version: 2.18.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,6 +10,7 @@ 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
13
14
  Classifier: Development Status :: 4 - Beta
14
15
  Classifier: Operating System :: Unix
15
16
  Classifier: Operating System :: MacOS
@@ -22,32 +23,34 @@ Classifier: Programming Language :: Python :: 3.8
22
23
  Classifier: Programming Language :: Python :: 3.9
23
24
  Classifier: Programming Language :: Python :: 3.10
24
25
  Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
25
28
  Classifier: Topic :: Scientific/Engineering
26
29
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
27
30
  Classifier: Topic :: Software Development
28
31
  Classifier: Topic :: Software Development :: Libraries
29
32
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
- Requires-Python: >=3.8.0,<3.12.0
33
+ Requires-Python: >=3.8.0
31
34
  Description-Content-Type: text/markdown
32
35
  License-File: LICENSE
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
36
+ Requires-Dist: google-api-core (!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5)
37
+ Requires-Dist: kfp (<2.11.0,>=2.6.0)
38
+ Requires-Dist: google-cloud-aiplatform (<2,>=1.14.0)
39
+ Requires-Dist: Jinja2 (<4,>=3.1.2)
37
40
  Provides-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'
41
+ Requires-Dist: protobuf (<5,>=4.21.1) ; extra == 'docs'
42
+ Requires-Dist: grpcio-status (<=1.47.0) ; extra == 'docs'
43
+ Requires-Dist: commonmark (==0.9.1) ; extra == 'docs'
44
+ Requires-Dist: autodocsumm (==0.2.9) ; extra == 'docs'
45
+ Requires-Dist: sphinx (<6.0.0,>=5.0.2) ; extra == 'docs'
46
+ Requires-Dist: sphinx-immaterial (==0.9.0) ; extra == 'docs'
47
+ Requires-Dist: sphinx-rtd-theme (==2.0.0) ; extra == 'docs'
48
+ Requires-Dist: m2r2 (==0.3.3.post2) ; extra == 'docs'
49
+ Requires-Dist: sphinx-notfound-page (==0.8.3) ; extra == 'docs'
47
50
  Provides-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'
51
+ Requires-Dist: mock (>=4.0.0) ; extra == 'tests'
52
+ Requires-Dist: flake8 (>=3.0.0) ; extra == 'tests'
53
+ Requires-Dist: pytest (>=6.0.0) ; extra == 'tests'
51
54
 
52
55
  # Google Cloud Pipeline Components
53
56
 
@@ -92,3 +95,5 @@ Use the following command to install Google Cloud Pipeline Components from [PyPI
92
95
  ```shell
93
96
  pip install -U google-cloud-pipeline-components
94
97
  ```
98
+
99
+
@@ -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=SP3sOlCOMI-zlRMGGvuqYoBYWVLHF-u5h5tqKoQiyMM,678
5
+ google_cloud_pipeline_components/version.py,sha256=guEtO5rUz5sHqasbxGaQK-7Gq695wptye2eCEDcNpaA,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,13 +30,13 @@ 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=dSLCXSQKd4M1HxSIhoAmASPIqDa2qx7BMzHB97vIEz8,763
33
+ google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=UJ2J8TOz1rDNgSqUe-Mj2k0-G_Eb8fu7Yg4BwaG2IrM,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
37
37
  google_cloud_pipeline_components/_implementation/model_evaluation/__init__.py,sha256=oB1e-LSzK0pctcXf6M9Uiu3_83QxC7RnUy4lU1dlOJs,4692
38
38
  google_cloud_pipeline_components/_implementation/model_evaluation/utils.py,sha256=9V34RtPZSRNeBwcsImaZM6YC3T7CafT_E00Iby4KHxw,3540
39
- google_cloud_pipeline_components/_implementation/model_evaluation/version.py,sha256=QHCvg6WZkQq-VdX7hbWCQHK-7SjHpxSppGa9ppyJNmk,963
39
+ google_cloud_pipeline_components/_implementation/model_evaluation/version.py,sha256=XvzrHsB6WzGMjkz8-PvSJhQToWTbUByPPSoz9DLzKF4,963
40
40
  google_cloud_pipeline_components/_implementation/model_evaluation/chunking/__init__.py,sha256=PRHVsIq1dFb0mweuU0kfUUP90FbX--kxdBGCpwfLTgA,665
41
41
  google_cloud_pipeline_components/_implementation/model_evaluation/chunking/component.py,sha256=lv0eNdIBtnCUs9wi9CGUWE_fd4zodGN7M8fTBiCg0g0,4436
42
42
  google_cloud_pipeline_components/_implementation/model_evaluation/chunking/feature_store_grounding_pipeline.py,sha256=zGCMJhBCWBV-Dg5gz-wpheLQhD-GuEW_fgcb0cWa78U,4167
@@ -57,6 +57,8 @@ 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
60
62
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/__init__.py,sha256=kEQ4aaKnV-KulHqbhb6eJIZzk4O7uSBRPzm_e3q_hcA,697
61
63
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/component.py,sha256=H0g7nMK3JVdQonLe5jpKvvzm9N2YzFGQUWJwwfxQ33s,11227
62
64
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/__init__.py,sha256=CUSeP0l2KFuo2wbw00DE5Zur0jpgHpZ1aThg7yqWuGY,680
@@ -64,9 +66,9 @@ google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/
64
66
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding_retrieval/__init__.py,sha256=Q9YimgEKkKP8QW8fV50nNRjWXdt0_90Qr_gfQ0A9fao,691
65
67
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding_retrieval/component.py,sha256=er26AxV0ydpKFbhrLs2IIia9hbLxXhe78Q-fQvvK_20,7265
66
68
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/__init__.py,sha256=gDyltb_vTZRncaVZbMUkXYBHZsEg_CuaPAQVWUOGy7c,671
67
- google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/component.py,sha256=rclGlXxDr6vozQ6elDDCDbdJXWjG461Z9nmTaiKGsFs,7478
69
+ google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/component.py,sha256=vU3EsXoquUpsbu999rByKkZTvMYLTkH-Xdj2ycI-KnA,7598
68
70
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/__init__.py,sha256=LLvQQ9Mv_md1POK_XErR7NUr-XAZX28w5KD0EQiT32w,684
69
- google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=L6dPaWuOr-BhP7yAatFGVTX2MYTuI2f88W_oR5ee88E,9170
71
+ google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=HOj4_2DOXVP0s0NkVAY1_q4j4okqEcHpdfPsE7W2dI8,9131
70
72
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/__init__.py,sha256=UcAfohvqwJ7X8rlV6I2RsZ5ohYWbafXI5yYRAAwvspE,695
71
73
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/component.py,sha256=hpwra0rXUP_LG6WNdnB9RD0cy1Gn3InrzAUJIk-oRc4,8142
72
74
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_retrieval_metrics/__init__.py,sha256=oVVVTCE230KYGcuz_rXYEuypZmm6OKg7K2BsFtpcDw0,701
@@ -304,35 +306,35 @@ google_cloud_pipeline_components/container/v1/wait_gcp_resources/remote_runner.p
304
306
  google_cloud_pipeline_components/preview/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
305
307
  google_cloud_pipeline_components/preview/automl/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
306
308
  google_cloud_pipeline_components/preview/automl/forecasting/__init__.py,sha256=Y-PNjGWILh5wMGQLmvaIukfr9KC9oD2GQLhfJDofrAQ,3532
307
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=J_RXFxKttZjeBd4S6iUGV4szUbijBMSr9H84_O-0roA,5655
308
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=Idn3uZ0IOi3qlFtxKa04G0qlYlNGzJ1jULlDjVUmppM,6564
309
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=HntTYydirtTuxpml29BiKuNjT9XBvRww-c1ZmqiKfFU,6376
310
- google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=2cDqxpGmVo4DZI-2U34P_3Yl50EAXjAUue6yW5dKzoA,357434
311
- google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=-nKvinrQBTuZ53LnGAWxwBU489cOTXCDgooMRrpoY2U,355613
312
- google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=4yAu2i5_dBlD24g_qqzW8adz6dD6neQKyLOdPiug03k,354719
313
- google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=kS-O16UOE2sTxObIYWBGevzrVFJZxrk_kjIfZlTheZk,357509
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
314
316
  google_cloud_pipeline_components/preview/automl/forecasting/utils.py,sha256=fet0opwz3FbuGpUOlm2AnwOI0PEk_wXjTBFqrF_2BNA,55547
315
317
  google_cloud_pipeline_components/preview/automl/tabular/__init__.py,sha256=jzu9udS0cH8lSSvgn3XerrKbs69GpMzI2NGSpNQmbcI,4247
316
- google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=rkZAY6gfysM2Hofhra7kEsPlqGP5SEpDdbBMrfEBlho,3643
317
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=FKUqmxNQ_eqnlv1Wh-JLbAnJomlL52-cx6ORB7YKZg8,511441
318
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=G5diMzB1BlifEaglckD7mJDJHJnBKoEuw6Y9BAxVwSc,580670
319
- google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=eHfaTXflqdz8bpX-GNGwTmGlhp1GKWfAHEibG0hwEUs,9629
320
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=LZcXe-U7aXDN6rtRUcl62VSgGtf-InH0Owgg5Ibateo,7546
321
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=gWMEtIoNV1yCWxbzlaahnwR1WCsVFbVTJGiH72f9a2s,75354
322
- google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=IYXZTM_Ak0jVdIz0rscvGs56DQr9qBIULXIHW3ljXpk,47372
323
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=NQ7WsD8EGCrIKxnfXrtMKGWrBg96rbQ5KDSfN7U4HAs,9980
324
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=w-y8AjGkYIRUdznGNmOBc_ncpGvLNspxn7sJNFXds7s,243042
325
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=u4Yt_eGAwvho6rPfsJSuYiCubH0tSaLzIHUAFLRJQoQ,12748
326
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=hnqhmAaBm9D6vtKeQ6BNKaZEQDBZDUHpf6xpZYHE_t0,202129
327
- google_cloud_pipeline_components/preview/automl/tabular/utils.py,sha256=R5Vzq9dlFh619Rbw03xuCMpgFxSX2rDNf5i5gGE93yM,168283
328
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=cuMoRTUgrKuwaIUIHfhpvxw7z2QcWfdfdoS-oI78Zro,9975
329
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=dEI-qZUzBme7-5qUqMXspACVEKPM79P4NltbThnrHZQ,195050
330
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=VVAGIEV2ZfSyVJ-A_fA4dCOxXq-pfjp29PxknhuXHPo,11922
331
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=sKLOFc96BcO7FgYDcpHJgRslkluuuT81EZOOmEjut_I,190786
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
329
+ 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
332
334
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job.py,sha256=BYgs8CyzSObP6NeHbIXQaCV2Cgn2f0uJ47sxWHM6rT0,4787
333
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=a5Pr9E9yalxrO2xPM8h-KgRa_cq3_oYldSKOFw7JMrs,223562
335
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=aydCpusUkB5b5tknb-tIc2OQfaLt3eXpLn6Knr9HvOc,223562
334
336
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer.py,sha256=fpc36b4aiggwj7suMa3oCxcJbQoFQZ5H15eFeustDWc,2333
335
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=lNCHEjLyhXxZL1lc1C2Q1A9xzy3EFfEwTyhhiU3Q7Vo,208025
337
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=lO2p1smEQ7K3w9MDf-OHjfM_DOdJ_WRiZe1OhnVk7nM,208025
336
338
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_large_search_space.json,sha256=PCUg32sSgMbrLrZu2QVV6IyaUyNokUHq3CjS0_0y3uo,3292
337
339
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_medium_search_space.json,sha256=ARIW4gkMZfCgjIJVTSUfzJVH4qc6dWmxdJFWSSXAFmA,3261
338
340
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_small_search_space.json,sha256=IXoaCZ0heGqduiQKkR-sizbwR1151y9ZeDKqTYVlvPQ,2975
@@ -347,7 +349,7 @@ google_cloud_pipeline_components/preview/automl/tabular/configs/xgboost_params.j
347
349
  google_cloud_pipeline_components/preview/automl/vision/__init__.py,sha256=ECcFn5XrChjnp52lmK_7ptKesPkItHZHNdww-MBj4cY,758
348
350
  google_cloud_pipeline_components/preview/automl/vision/data_converter.py,sha256=H3Rik7H-2l6wxO5MRJxuP5-IF3wVyn6s2UztQcH6aTU,6413
349
351
  google_cloud_pipeline_components/preview/automl/vision/json_utils.py,sha256=u101hWM6zpknKIQPk387feW_1HE6TI1FeckKL7e-6QA,6001
350
- google_cloud_pipeline_components/preview/custom_job/__init__.py,sha256=ls8RaNhWZQDcsh4JVaIky16Lu60bjaGyfJ3ADRHk1XU,1295
352
+ google_cloud_pipeline_components/preview/custom_job/__init__.py,sha256=qcU37sULSSLGJQyV_FoLs6PNTpaV7sL4iC4LFpUWXVU,1508
351
353
  google_cloud_pipeline_components/preview/custom_job/component.py,sha256=Br1mhG3adxGl-bhWBXDiPkWvPhNZPhGQZcJlh_yicK4,7556
352
354
  google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=k1uPVIBsvYdRqKVIly0ynoOLqZHNwtFhPS9l31Lkb8E,18493
353
355
  google_cloud_pipeline_components/preview/dataflow/__init__.py,sha256=74-o9aye0R356KRmf5sBeXZ3OkBWEn62pywrclsEIW4,773
@@ -360,15 +362,21 @@ google_cloud_pipeline_components/preview/llm/rlhf/__init__.py,sha256=sb6SfJl6rt3
360
362
  google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=9XpSVUga81GTqkn4qMBddhc41IzY0-p4IBC4UFP50G4,15339
361
363
  google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=n076N7S2HEdMuSZ8cyKM6acjCjslOHjCx4SR49asRME,2121
362
364
  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
363
367
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_component.py,sha256=XWrI1inQ9hKixFrp2LUdgu7hONYUvbsxv2GXZ-UTkCY,7450
364
368
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_graph_component.py,sha256=jesgBUKbIB_qQoYb5-Bv_LBbFHl0tPyMlVFx-o1eE6k,13624
365
369
  google_cloud_pipeline_components/preview/model_evaluation/model_bias_component.py,sha256=R8WhT8jf_OOpMuABRh2BYTDEcfiGAf6VA-vFgiTymYY,6674
366
370
  google_cloud_pipeline_components/preview/model_evaluation/model_evaluation_import_component.py,sha256=ePHbJqWYbZR5wCgJ8aVgDrOcWSoAiVq7df6HxTw1gdY,8118
367
371
  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
368
375
  google_cloud_pipeline_components/preview/starry_net/__init__.py,sha256=yEpcicPBsGqgahrCtcJ06a_7E2pUgdp32U0yWwFRy7E,796
369
376
  google_cloud_pipeline_components/preview/starry_net/component.py,sha256=SdmUfL7xZfK8yWOuVqDczqTqJMShAga3rJxgj4mFCxE,24424
370
377
  google_cloud_pipeline_components/proto/__init__.py,sha256=aiPUc6gpQwG9cRTYfw3ChFCJfDr3vAIsm2eMYUDJjJQ,661
371
378
  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
372
380
  google_cloud_pipeline_components/proto/task_error_pb2.py,sha256=PPz4luEm3Pa3YDn4mtpqEPl8QVSFa44pV8W2KbWRq1I,1235
373
381
  google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=jAIJgc5UWYz8E0Vf3IbjPlyiWI3kCNYrJHyAUaQTpgc,10067
374
382
  google_cloud_pipeline_components/types/__init__.py,sha256=1WFkL49QEy-gNb6ywQOE4yZkD7DoULAeiL1tLdb3S28,606
@@ -376,24 +384,24 @@ google_cloud_pipeline_components/types/artifact_types.py,sha256=zvwvzRuFb_s1VS1m
376
384
  google_cloud_pipeline_components/v1/__init__.py,sha256=E1Fie3Gq3KKLHEBGUUBeuao-Eo1uwuBfAWWhx2siwaE,765
377
385
  google_cloud_pipeline_components/v1/automl/__init__.py,sha256=l8whL8MMhZ-KMyacLpGzO-5cNxxD2wUW6PtMVx0C_mI,631
378
386
  google_cloud_pipeline_components/v1/automl/forecasting/__init__.py,sha256=FVS4qHJEuAxXZuW9ffOD16_-T0xwaUUBh2j1d4AF8HQ,1488
379
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=DDG4ahKKakMdtKjrPg9kEPStD8Fbmqar1MviizeYcIs,51452
380
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=koy2ufihkh1etOEuVSCTxLHqM3DN3natpYQaQ9_pGYs,242529
381
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=8BGD9V5gRy4hz48eFC92UMJvYeGDOw1TvGDgVOuOGIY,93654
382
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=o4IiEAPi6gVsLBMeNpAzQ1hH9aBU5HhnbWumHDDILIw,8815
383
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=Njeofta7l8qB0Gc2idDpHg_qQo-nyPX6CxSL8SWcVm0,143006
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
384
392
  google_cloud_pipeline_components/v1/automl/forecasting/utils.py,sha256=Q0SxHlj2jhlpX-buOkxZqDL0wN8Si2-f5iMo08w54ms,14855
385
393
  google_cloud_pipeline_components/v1/automl/tabular/__init__.py,sha256=Clqtp6KThsxtvgu6Egj-dbkftci-VWDSKXXo_T6bTv8,2480
386
- google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=AEHDvQsAirmdsJyHQgGI6wlMGmTxYK7Sh3AftoP83aI,500714
387
- google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=H3ksDorAVswP-LO2KvDpskbPVmL4RKNik_e16ChJ4Wo,6708
388
- google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=hdBAqal6CvI_8qQhaSaNFLdYGL3q3sH8DndtGWG-KsQ,6935
389
- google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=zwm4Rtt3UvLcSUTdfUdyn7GLOEhcBC52sY8epgN2N8g,3108
390
- google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=xzj_m5aunJKYbc6ehE_k8Hpb_sPX-T-DXAsi9O8fJSI,1333
391
- google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=-ZQwdmHb3OCC9-upMBkbWPiTG-aaXJ-e1B5cjyrDDn0,5571
392
- google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=bMzq20qlOM52W-_Q5AgaRBUBnH2fQFYxuWvK3n1xBFE,7761
393
- google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=NWlzxR5N5SCxIFjvHt9gAjZXRymvKpWSMDkzvvHIs3w,13367
394
- google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=y7yaiqoZjOnfe2wzhuy8Xnau0p7uzKCVkIu3f5PFrls,12202
395
- google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=izPKzDHGzlvBL7gNOPxC4FX1Q-rpzZi_PET5UZ3KbEA,8241
396
- google_cloud_pipeline_components/v1/automl/tabular/utils.py,sha256=2iBuwuUXfDKhZA1nfhfvl_IcnI4j0uesR4TbM9W13uU,74625
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
404
+ google_cloud_pipeline_components/v1/automl/tabular/utils.py,sha256=ArCR1luEMRULJ7fSxvJdKhwb7bAi8ASMv8zlKGgz8-A,74660
397
405
  google_cloud_pipeline_components/v1/automl/tabular/deprecated/default_pipeline.json,sha256=r9w-yavDpzGQX94geZ4q58aJdQdn2VvCm14IsNFIZyQ,321170
398
406
  google_cloud_pipeline_components/v1/automl/training_job/__init__.py,sha256=oCltxPx9ycdB2VJYLTNx3_o5t1zBXJFjNUOFFpoADwE,1803
399
407
  google_cloud_pipeline_components/v1/automl/training_job/automl_forecasting_training_job/__init__.py,sha256=frKfHDfi0BBzLErUs-xaQlj_MpE_Yr28scoHceyvXLE,655
@@ -462,8 +470,8 @@ google_cloud_pipeline_components/v1/bigquery/predict_model/component.py,sha256=1
462
470
  google_cloud_pipeline_components/v1/bigquery/query_job/__init__.py,sha256=Ot_1BluGAMGP2l6lok-ksqUrcFegEuuvBnEFHcGjydI,667
463
471
  google_cloud_pipeline_components/v1/bigquery/query_job/component.py,sha256=100KwAgJZ8fQrSCfy8oMwjghsO9HICvQRHOQjDwqh_I,5187
464
472
  google_cloud_pipeline_components/v1/custom_job/__init__.py,sha256=qxHupfqqpAQ3sK3Pp7pKNGfPKsS4qb1E9xM067U5MMw,1278
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
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
467
475
  google_cloud_pipeline_components/v1/dataflow/__init__.py,sha256=ZPJGssKq2P5iwFY_I68gZPoXSPHVNYQ59nVlA8mOtOo,1063
468
476
  google_cloud_pipeline_components/v1/dataflow/flex_template/__init__.py,sha256=uG42x7_0zehtVV7f_fHvPHBJ48aqi3jJwLY6tplH8jk,669
469
477
  google_cloud_pipeline_components/v1/dataflow/flex_template/component.py,sha256=C9oHSlOwh0fTUPN9b2u7vNvM2NbkWT-FX82kPOKkzLc,11701
@@ -544,9 +552,9 @@ google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_p
544
552
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py,sha256=LlMSMVbiZGXOZo4SqEQZZu9GQWWzHnwhrygwmDkqVdA,42457
545
553
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py,sha256=wEu67EPXb9x9PcYMYmnuETKbAz_lP5Kewv439IiFxIM,51226
546
554
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=vF_EOPg7S3UCTCNw6GrhQz_Sn8ctPZ-JpJEt6JlSF3Y,12036
547
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=pqRLTWQpJLwn4kKQ5o5hx9_FlcPDcIC0Z3joykJHBhs,11854
555
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=1WD_fbYSdYrXMUEJiULgMY5Vi2BlklmvwkhtZWZeTxs,11869
548
556
  google_cloud_pipeline_components/v1/model_evaluation/forecasting_component.py,sha256=gOnvKAJWa3velczeuVBCzW6b_tcc2v_lNFqHXGhjD44,10017
549
- google_cloud_pipeline_components/v1/model_evaluation/regression_component.py,sha256=eFrjrKQot3-SlRCoKoTOEsyp2Xj0GfDtrjpxTDKAHYY,9117
557
+ google_cloud_pipeline_components/v1/model_evaluation/regression_component.py,sha256=ZAMHNaSEtTH_V_Zs_yf5KNIN38ZK6obbHuWWSfLKT68,9101
550
558
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=57gYyoAJwLIeXoLTTyVqOWgkj7dlUP4IKM4OmMabCRM,828
551
559
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
552
560
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=s3cWwJzy6qqogA2rURdojMQfRYBTdiQ20e3i3vRis50,8914
@@ -554,8 +562,8 @@ google_cloud_pipeline_components/v1/vertex_notification_email/__init__.py,sha256
554
562
  google_cloud_pipeline_components/v1/vertex_notification_email/component.py,sha256=Dau8ZI0mzLBnLOUBQm6EtK8gbtX1u57t76Ud5qlg9xc,2163
555
563
  google_cloud_pipeline_components/v1/wait_gcp_resources/__init__.py,sha256=w6dfz-rYsYnxFapRH1Dix3GVz0mhPW0m1IVpE6z8jbg,878
556
564
  google_cloud_pipeline_components/v1/wait_gcp_resources/component.py,sha256=Nsfj5c3eeZq83fHLvv2IlpK4jrjxLxRksFYOl5W6JnA,2468
557
- google_cloud_pipeline_components-2.16.1.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
558
- google_cloud_pipeline_components-2.16.1.dist-info/METADATA,sha256=mKcwBgD0FKhbdCC315q_jU7a2GijYVZ_UtPRQHbqfMQ,5810
559
- google_cloud_pipeline_components-2.16.1.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
560
- google_cloud_pipeline_components-2.16.1.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
561
- google_cloud_pipeline_components-2.16.1.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.2.0)
2
+ Generator: bdist_wheel (0.37.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5