google-cloud-pipeline-components 2.13.0__py3-none-any.whl → 2.14.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 (68) hide show
  1. google_cloud_pipeline_components/__init__.py +5 -6
  2. google_cloud_pipeline_components/_implementation/llm/deployment_graph.py +4 -10
  3. google_cloud_pipeline_components/_implementation/llm/env.py +1 -1
  4. google_cloud_pipeline_components/_implementation/llm/function_based.py +14 -48
  5. google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py +1 -1
  6. google_cloud_pipeline_components/_implementation/llm/reinforcement_learning_graph.py +27 -36
  7. google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py +26 -41
  8. google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py +60 -0
  9. google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py +11 -0
  10. google_cloud_pipeline_components/_placeholders.py +30 -1
  11. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py +1 -1
  12. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py +2 -2
  13. google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py +2 -2
  14. google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml +34 -34
  15. google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml +34 -34
  16. google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml +34 -34
  17. google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml +34 -34
  18. google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py +1 -1
  19. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml +39 -39
  20. google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml +41 -41
  21. google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py +2 -2
  22. google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py +2 -2
  23. google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml +4 -4
  24. google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py +3 -3
  25. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py +2 -2
  26. google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml +17 -17
  27. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py +2 -2
  28. google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml +15 -15
  29. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py +2 -2
  30. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml +16 -16
  31. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py +2 -2
  32. google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml +15 -15
  33. google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml +14 -14
  34. google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml +13 -13
  35. google_cloud_pipeline_components/preview/automl/vision/data_converter.py +3 -1
  36. google_cloud_pipeline_components/preview/custom_job/component.py +2 -2
  37. google_cloud_pipeline_components/preview/custom_job/utils.py +3 -2
  38. google_cloud_pipeline_components/preview/llm/rlhf/component.py +60 -8
  39. google_cloud_pipeline_components/preview/model_evaluation/__init__.py +1 -1
  40. google_cloud_pipeline_components/proto/template_metadata_pb2.py +80 -52
  41. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml +10 -10
  42. google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml +31 -31
  43. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py +3 -3
  44. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml +14 -14
  45. google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml +37 -37
  46. google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py +2 -2
  47. google_cloud_pipeline_components/v1/automl/tabular/ensemble.py +2 -2
  48. google_cloud_pipeline_components/v1/automl/tabular/finalizer.py +1 -1
  49. google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py +1 -1
  50. google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py +1 -1
  51. google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py +2 -2
  52. google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py +2 -2
  53. google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py +1 -1
  54. google_cloud_pipeline_components/v1/automl/tabular/transform.py +2 -2
  55. google_cloud_pipeline_components/v1/model_evaluation/__init__.py +3 -1
  56. google_cloud_pipeline_components/v1/model_evaluation/classification_component.py +2 -2
  57. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py +10 -1
  58. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py +13 -4
  59. google_cloud_pipeline_components/{preview → v1}/model_evaluation/model_based_llm_evaluation/__init__.py +2 -2
  60. google_cloud_pipeline_components/{preview → v1}/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py +2 -2
  61. google_cloud_pipeline_components/version.py +1 -1
  62. {google_cloud_pipeline_components-2.13.0.dist-info → google_cloud_pipeline_components-2.14.0.dist-info}/METADATA +3 -3
  63. {google_cloud_pipeline_components-2.13.0.dist-info → google_cloud_pipeline_components-2.14.0.dist-info}/RECORD +67 -68
  64. {google_cloud_pipeline_components-2.13.0.dist-info → google_cloud_pipeline_components-2.14.0.dist-info}/WHEEL +1 -1
  65. google_cloud_pipeline_components/proto/preflight_validations_pb2.py +0 -47
  66. /google_cloud_pipeline_components/{preview → v1}/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py +0 -0
  67. {google_cloud_pipeline_components-2.13.0.dist-info → google_cloud_pipeline_components-2.14.0.dist-info}/LICENSE +0 -0
  68. {google_cloud_pipeline_components-2.13.0.dist-info → google_cloud_pipeline_components-2.14.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.13.0
3
+ Version: 2.14.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
@@ -19,7 +19,6 @@ Classifier: Intended Audience :: Education
19
19
  Classifier: Intended Audience :: Science/Research
20
20
  Classifier: License :: OSI Approved :: Apache Software License
21
21
  Classifier: Programming Language :: Python :: 3
22
- Classifier: Programming Language :: Python :: 3.7
23
22
  Classifier: Programming Language :: Python :: 3.8
24
23
  Classifier: Programming Language :: Python :: 3.9
25
24
  Classifier: Programming Language :: Python :: 3.10
@@ -29,8 +28,9 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
29
28
  Classifier: Topic :: Software Development
30
29
  Classifier: Topic :: Software Development :: Libraries
31
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
32
- Requires-Python: >=3.7.0,<3.12.0
31
+ Requires-Python: >=3.8.0,<3.12.0
33
32
  Description-Content-Type: text/markdown
33
+ License-File: LICENSE
34
34
  Requires-Dist: google-api-core (!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5)
35
35
  Requires-Dist: kfp (<=2.7.0,>=2.6.0)
36
36
  Requires-Dist: google-cloud-aiplatform (<2,>=1.14.0)
@@ -1,35 +1,35 @@
1
- google_cloud_pipeline_components/__init__.py,sha256=3Mr8_YbBkTzArlgPDkUKoMzoKHZx1PM8KVgBXEtshj4,1189
1
+ google_cloud_pipeline_components/__init__.py,sha256=HOU1WNUeWpY1HjluW8vbI7Cai_EFsBqNUPFBCiU5pug,1139
2
2
  google_cloud_pipeline_components/_image.py,sha256=lANDYNk1WSuGZSoTTRcWdjsUvCkkA-PmwouTM9Et7fY,828
3
- google_cloud_pipeline_components/_placeholders.py,sha256=517N_NQthPEBFJtsy8NE3WkBJm_dmwmlXdYNtk5gH-c,1233
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=MSozmdtxEpg_eKMjFnu4JHwlDy18-IUD1wgUqboJ-Vc,678
5
+ google_cloud_pipeline_components/version.py,sha256=dPeItKd-CNnHFmAleFK5AGgWNYH5lEvQKNwkbHDD-Fk,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
9
9
  google_cloud_pipeline_components/_implementation/llm/bulk_inferrer.py,sha256=k-MHsyESWboHdNeRm9q3MOGwbtZr37QNGm_Y_cGsETA,3958
10
10
  google_cloud_pipeline_components/_implementation/llm/deploy_llm_model.py,sha256=Jjme37_M32AK1r_MmHMHZvW8k9LJiqfZ4eJEquWoTt4,5029
11
- google_cloud_pipeline_components/_implementation/llm/deployment_graph.py,sha256=T6UgAco2Xk8Y0PjP5AfLSHSkE0V8m4OhrT4wTUdjGI4,5032
12
- google_cloud_pipeline_components/_implementation/llm/env.py,sha256=cnzBS0-a2_T-w54T2E6RtshjbEg8CJuycqoIsVrOJZI,1852
13
- google_cloud_pipeline_components/_implementation/llm/function_based.py,sha256=EPAY7uGukSfCJt9wkYOvXwJ_6WnkZBTBijYaMUCUcEg,18845
11
+ google_cloud_pipeline_components/_implementation/llm/deployment_graph.py,sha256=QuftPh7TD_wIEr-V53etfZY2ncBJJqiJaZ4I3RhLHoE,4902
12
+ google_cloud_pipeline_components/_implementation/llm/env.py,sha256=zY5glHO9oPWsALfYquR0euJHJnXbv2w-21mWVNit2Gw,1864
13
+ google_cloud_pipeline_components/_implementation/llm/function_based.py,sha256=SFeq2F27cA1we05xwSWBl7wwuYEx-zPLVq60yRohsTQ,17617
14
14
  google_cloud_pipeline_components/_implementation/llm/model_evaluation_text_generation_pairwise.py,sha256=W64FNFfbarOcDw1sSG9J-BQCVPUYx3zLAmwLhhGhth0,5102
15
15
  google_cloud_pipeline_components/_implementation/llm/online_evaluation_pairwise.py,sha256=khEli4fSoIQlaiReXOm3zsvsM7BIdbJOXFGUzjcvxOI,5299
16
16
  google_cloud_pipeline_components/_implementation/llm/preference_data_formatter.py,sha256=xqgvMsFgFIuiDAv3V3lf4XJSnLjZSTCHknGkmUcP9fs,5025
17
17
  google_cloud_pipeline_components/_implementation/llm/preprocess_chat_dataset.py,sha256=dMf2uXW4znn9W8xv9ZRNSPI6nZvp64FTq5GAqjXFRDk,11746
18
18
  google_cloud_pipeline_components/_implementation/llm/private_text_comparison_importer.py,sha256=Cwug1Tmk6tvg-l_qyxA6qr1-rslx33RkxA17sedFCz4,4133
19
19
  google_cloud_pipeline_components/_implementation/llm/private_text_importer.py,sha256=go6SqWEH5fuDuXYeIzglQIARNG_etOwhyhCsbQgFI8I,4418
20
- google_cloud_pipeline_components/_implementation/llm/reinforcement_learning_graph.py,sha256=qFZRwHSXHKE4TCroZwFs4pAO5WJfhIvPqCMUlvoKHvg,10152
20
+ google_cloud_pipeline_components/_implementation/llm/reinforcement_learning_graph.py,sha256=9Bmk0941-yShhLw8uG7iOcGhqs6CUH30c9h_06rNIIk,9756
21
21
  google_cloud_pipeline_components/_implementation/llm/reinforcer.py,sha256=yeg_2DGonlmf21KQYQXN28Mza0d6P0IPt9lDEyK5de8,6948
22
- google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py,sha256=b6IVt75nORhSmotK0dIwRN1Bx7qKAk6fBdQwQq0paEE,10767
22
+ google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py,sha256=aV0DtHYBwExqlsn1DeA0WknmXglDKiwwJthOLqKBx1A,10114
23
23
  google_cloud_pipeline_components/_implementation/llm/reward_model_trainer.py,sha256=xkj2hnHpZMLutGNxoewTVUsRR2bkLNkVUhWwjY9EXKA,5596
24
- google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py,sha256=IqwZ2PXGOOfBNeDIp3exKeqPn6kGwaSaozJEr4cbhDs,2510
24
+ google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py,sha256=0kJaJAkrdTUW4mOD0F8s0TmLS0Mi0isk-9KHL3YrBtI,6404
25
25
  google_cloud_pipeline_components/_implementation/llm/supervised_fine_tuner.py,sha256=5HzjhMXMRmaWGv3BlAi8lBg6MMlaaHlbqKez3ZcX5Ss,4951
26
26
  google_cloud_pipeline_components/_implementation/llm/upload_llm_model.py,sha256=iLtHLtrXzDbRHbgOW99SA9XDdhr_8omhLX1bTP-tsaE,4724
27
27
  google_cloud_pipeline_components/_implementation/llm/upload_tensorboard_metrics.py,sha256=BN-0TQFl49TcE54ltBRt4iZYTjO7718eCLwHKR58ips,4010
28
28
  google_cloud_pipeline_components/_implementation/llm/utils.py,sha256=E250cmvw0QUnt8NLDl5crK6K1o1FguUglQIdBVqfwQI,5548
29
29
  google_cloud_pipeline_components/_implementation/llm/utils_test.py,sha256=co8gWyrowY5CpkFNsaLGQlD_gpIykkVI7czxIizp5cM,2864
30
- google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py,sha256=SRIqcvZIvFgioH1zvcUsJtmYi8apEsmHtrhmUVK-Pgs,4078
30
+ google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py,sha256=35E2jx3wG_1-qnF9u6GygEmekJ3dG9LklJx2Bh6ayJ8,4350
31
31
  google_cloud_pipeline_components/_implementation/llm/generated/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
32
- google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=C9B3k4m6r22Qvg7GN1E8S_Os3hkk4akAy7ML5nON42Y,763
32
+ google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=a4YTJDADYluJ4fhZta-82z-_iaVkFFbeKEvq_tuP6EU,768
33
33
  google_cloud_pipeline_components/_implementation/model/__init__.py,sha256=KmOW74re0WZ93DWM1lqqQYbv6w1aIW66BMV3gaAdg3s,811
34
34
  google_cloud_pipeline_components/_implementation/model/get_model/__init__.py,sha256=cXMkDUZHVSbXeXSa3qsI6Ef8Tad9nmusw5NUZaYORdE,662
35
35
  google_cloud_pipeline_components/_implementation/model/get_model/component.py,sha256=H2sbMTWCw8nMDMT-Ni9-pdzVXEFmHYjtP3z1LcI5m5w,2307
@@ -276,35 +276,35 @@ google_cloud_pipeline_components/container/v1/wait_gcp_resources/remote_runner.p
276
276
  google_cloud_pipeline_components/preview/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
277
277
  google_cloud_pipeline_components/preview/automl/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
278
278
  google_cloud_pipeline_components/preview/automl/forecasting/__init__.py,sha256=Y-PNjGWILh5wMGQLmvaIukfr9KC9oD2GQLhfJDofrAQ,3532
279
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=iWvB2IdScLzpwsYJKm1eOh4GQgkacyvTKAs5TJdZSvA,5655
280
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=onRy4eAu66K7nryf6noL3C-7bzK6Bx_tABqYnZS5pVI,6564
281
- google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=7uOdZvMWxq9Ia8o0aL8LS_i0DcSCjwwTDNe4aDFPLGo,6376
282
- google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=291CMZu2xtBz7JAOJinyVneplGJIijh6zq2LI49NbZI,357164
283
- google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=7T_o9v8LOkgzgVKvs1Xnm3fzzvi-IN4xano4Alq-GSA,355343
284
- google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=rYzI3gY6S4LiOfnZEZsg0obVtUBtNIDdrPejvyjZdCU,354449
285
- google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=YZzGBgEXhDzneggnVLVVsBQlxUKxKNHsjhuTm44GFTI,357239
279
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_ensemble.py,sha256=UiIXnRrC0StwEbyrOaaFCgaLI_cmlfsZMc5-gD6GIqI,5655
280
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_1_tuner.py,sha256=csDNevJqjanzBrwOQZ_A57XOrQFuCIuS0CjdhMQqa6k,6564
281
+ google_cloud_pipeline_components/preview/automl/forecasting/forecasting_stage_2_tuner.py,sha256=RlRZOcVLbWoliAlomnc3Eg8Un7EYKZDbl6f4u4EBOIQ,6376
282
+ google_cloud_pipeline_components/preview/automl/forecasting/learn_to_learn_forecasting_pipeline.yaml,sha256=bISalN654A1jLJjtoh6dCsUPB_IMWxs12Hd7OmWYLQg,357164
283
+ google_cloud_pipeline_components/preview/automl/forecasting/sequence_to_sequence_forecasting_pipeline.yaml,sha256=ltjG3imP76HUlx03NiekniB5LyY6Sjy4SK9xVlFfOHQ,355343
284
+ google_cloud_pipeline_components/preview/automl/forecasting/temporal_fusion_transformer_forecasting_pipeline.yaml,sha256=yWvhx7OiMBJVsjhXePt1raf2FuYZ-x8WnriVp1XJyB0,354449
285
+ google_cloud_pipeline_components/preview/automl/forecasting/time_series_dense_encoder_forecasting_pipeline.yaml,sha256=dXEzuV-q4_eBrvzwzlFaabjJlg_9EnveMadbNMtWkuI,357239
286
286
  google_cloud_pipeline_components/preview/automl/forecasting/utils.py,sha256=WpN7O7y95kVry-E-6o9uvR1_DDNXZ-xAA4tQdY6werU,53462
287
287
  google_cloud_pipeline_components/preview/automl/tabular/__init__.py,sha256=jzu9udS0cH8lSSvgn3XerrKbs69GpMzI2NGSpNQmbcI,4247
288
- google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=_afd4WS0stxPihPMpNsJHvXKGz5vrC0QuM8_TvNS-uE,3643
289
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=PK_uLQJ6K-vU_BnFnkAYO0jOJ9MU8LKUK4vV1U52VF4,511441
290
- google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=JCHK8MxFIpeHzpGlcPmJnDVOzkyBee-f1o2_l62J55Q,580670
291
- google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=h1PQWTb3tivfWTnhyHJC6v3Z6QXC6br4jd1FHXjcyAI,9629
292
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=cUt9N82WZ_Q58GyvPHZMDHuS92zLceos9I0Yv5g7Lus,7546
293
- google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=MLiLJF-adcF42QJcaA7_DotBDZAevfvtxFK0sb84OTM,75354
294
- google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=jFoli3s7aMsndT4UstVjKO8VjfDhbfENxIAFtY2Skaw,47372
295
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=BDv8C83Qua1GVWm5teWtgyeBodLf81E5Ci4eoI0ZUvk,9980
296
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=-C2RyVm92V_cv0hfme2VLRSsCwnYyYxMhPur29QPJc0,243028
297
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=R-T6y4xCwhcDevCeqiDyx8IzSmZW6R_BAOqHgz0cKVI,12748
298
- google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=1Ekrm_OI5VB5w9s1Kp-Zwl704n7C4rtX7AHn6m874vI,202115
288
+ google_cloud_pipeline_components/preview/automl/tabular/auto_feature_engineering.py,sha256=80_T60cgEQREPzcHNnYXZ-jhPx0HpTvlupVPgHcS5gM,3643
289
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_feature_selection_pipeline.yaml,sha256=A8J0CIH5YZ0cOG92N_eolGpMRdzPE37SBFIJl9diaiQ,511441
290
+ google_cloud_pipeline_components/preview/automl/tabular/automl_tabular_v2_pipeline.yaml,sha256=g5rbq6WlTlcA1almlSSjJgoDJ5USAD_DNNchSDfZiZ4,580670
291
+ google_cloud_pipeline_components/preview/automl/tabular/distillation_stage_feature_transform_engine.py,sha256=pvRWXwEuDh29_ZJklesDf8hZ4i4HQfU9zvA-e53k894,9629
292
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection.py,sha256=4IwrjDDZ759fwNPcNIT3ZCKWoBAFRKpjC7vs4K_GB8o,7546
293
+ google_cloud_pipeline_components/preview/automl/tabular/feature_selection_pipeline.yaml,sha256=KAShAH9CAwsKa4F0NgzQdfpxpPIeVipaqPS0Ezb3spg,75354
294
+ google_cloud_pipeline_components/preview/automl/tabular/feature_transform_engine.py,sha256=9PoFSrdx__b6UL5DxbLQI7t5WmvdwS7AUFQ0AzdPzGs,47372
295
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job.py,sha256=iA61-apGcmULBRZK0y_kH62X1XDcDyooVgkstn0xWnM,9980
296
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_hyperparameter_tuning_job_pipeline.yaml,sha256=RM2b_jElWDmC_egJ4Ksr-SvHQpJJmy0gJ9L4eqzd3Kc,243042
297
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer.py,sha256=tJiEqyjvcr32Hujf0eX70aqC5c_rJvYxrq260xWz71g,12748
298
+ google_cloud_pipeline_components/preview/automl/tabular/tabnet_trainer_pipeline.yaml,sha256=PMyvRP2QmZTgK96qiNzutk0sigMxDGAT98wYex9u4d0,202129
299
299
  google_cloud_pipeline_components/preview/automl/tabular/utils.py,sha256=R5Vzq9dlFh619Rbw03xuCMpgFxSX2rDNf5i5gGE93yM,168283
300
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=tycm-_RJm17UXqD0FuVWDES5OML1g8L3eSe5TwNlJ7M,9975
301
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=0jiN2Jx2Q0i2h-3zK0sNYFgYgLLeo1bh0BNzNYkp3RY,195036
302
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=3ZZ3v5myho3JPe2kUt4ZGXy9E3ycswce8acny7ZYHWc,11922
303
- google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=XwRpa3Ex8QEg1iLr_eicZ2WRnMozaCwdIjWk--ymmb4,190772
300
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job.py,sha256=mmKMRR2xlUMP_GdlqcH7EqOmO0zUrasy6wR1xn8Oekc,9975
301
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_hyperparameter_tuning_job_pipeline.yaml,sha256=Pbu8qAA2ARjeWCNudeJCQvfgjlreezaWvv6Sr2byHc0,195050
302
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer.py,sha256=wZkA7PpvvLFDqdluLir9BvL9FdIxIUiDnLWeg54MC_c,11922
303
+ google_cloud_pipeline_components/preview/automl/tabular/wide_and_deep_trainer_pipeline.yaml,sha256=MOsLro6fElGOaVrD6-pZy7WMdNwbzhhbj-pbqdSaXQ8,190786
304
304
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job.py,sha256=BYgs8CyzSObP6NeHbIXQaCV2Cgn2f0uJ47sxWHM6rT0,4787
305
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=WG231iaeZzacvRfvl1ZFdjxpoTFiX5a7Nyy0h7sHCFI,223562
305
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_hyperparameter_tuning_job_pipeline.yaml,sha256=hl5sQP43x_6zSBmrEyQQyLWh97nQWyDrEsMLz1hDMao,223562
306
306
  google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer.py,sha256=fpc36b4aiggwj7suMa3oCxcJbQoFQZ5H15eFeustDWc,2333
307
- google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=Gw3tirRPLIw7h5HZYX5QDxohBdRmZzpZOjlywxtyRGY,208025
307
+ google_cloud_pipeline_components/preview/automl/tabular/xgboost_trainer_pipeline.yaml,sha256=LIANnnSzmg-1iJEXZYtz0VnU0-XcY2BoxWNGOvTIay8,208025
308
308
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_large_search_space.json,sha256=PCUg32sSgMbrLrZu2QVV6IyaUyNokUHq3CjS0_0y3uo,3292
309
309
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_medium_search_space.json,sha256=ARIW4gkMZfCgjIJVTSUfzJVH4qc6dWmxdJFWSSXAFmA,3261
310
310
  google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_large_data_small_search_space.json,sha256=IXoaCZ0heGqduiQKkR-sizbwR1151y9ZeDKqTYVlvPQ,2975
@@ -317,11 +317,11 @@ google_cloud_pipeline_components/preview/automl/tabular/configs/tabnet_params_sm
317
317
  google_cloud_pipeline_components/preview/automl/tabular/configs/wide_and_deep_params.json,sha256=g8P6ZBjoQvN8ZDHmUKl2rHZLGMXgoTIEoj9Xmrob0qk,2647
318
318
  google_cloud_pipeline_components/preview/automl/tabular/configs/xgboost_params.json,sha256=r5Uwl49bs4vGKlWGm-LrpyJHZRBD2uap1QH6-tzqa_g,7748
319
319
  google_cloud_pipeline_components/preview/automl/vision/__init__.py,sha256=ECcFn5XrChjnp52lmK_7ptKesPkItHZHNdww-MBj4cY,758
320
- google_cloud_pipeline_components/preview/automl/vision/data_converter.py,sha256=sjuvrYN7NImDRwp-Qr6NqAteXLbhvg3k5t4k_Tw9Ldw,6310
320
+ google_cloud_pipeline_components/preview/automl/vision/data_converter.py,sha256=H3Rik7H-2l6wxO5MRJxuP5-IF3wVyn6s2UztQcH6aTU,6413
321
321
  google_cloud_pipeline_components/preview/automl/vision/json_utils.py,sha256=u101hWM6zpknKIQPk387feW_1HE6TI1FeckKL7e-6QA,6001
322
322
  google_cloud_pipeline_components/preview/custom_job/__init__.py,sha256=ls8RaNhWZQDcsh4JVaIky16Lu60bjaGyfJ3ADRHk1XU,1295
323
- google_cloud_pipeline_components/preview/custom_job/component.py,sha256=dnSrcilFi3CbEjh3YxeYYuE8v_SRCbVsWogAksaLEAg,7098
324
- google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=knm5G8cI1_zdRilHQWujUJ3PNZG9RMo7diQ22FQQXs0,16062
323
+ google_cloud_pipeline_components/preview/custom_job/component.py,sha256=Br1mhG3adxGl-bhWBXDiPkWvPhNZPhGQZcJlh_yicK4,7556
324
+ google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=6JkjGAXei9ON5M3h4Wp4WOJJt3ZashOp8NxOcca9vts,16579
325
325
  google_cloud_pipeline_components/preview/dataflow/__init__.py,sha256=74-o9aye0R356KRmf5sBeXZ3OkBWEn62pywrclsEIW4,773
326
326
  google_cloud_pipeline_components/preview/llm/__init__.py,sha256=acmo31OFe-d7Ubo5FC2baLwxORFQzLtLdm8o5cO15qY,996
327
327
  google_cloud_pipeline_components/preview/llm/infer/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
@@ -329,42 +329,38 @@ google_cloud_pipeline_components/preview/llm/infer/component.py,sha256=lRksuPdsD
329
329
  google_cloud_pipeline_components/preview/llm/rlaif/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
330
330
  google_cloud_pipeline_components/preview/llm/rlaif/component.py,sha256=F4uzuz2pcLDd5IJ6--IkZf2dcmimiYfCivwmPwL_QIg,10801
331
331
  google_cloud_pipeline_components/preview/llm/rlhf/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
332
- google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=xZfzOZ91_TB7yJgWT63WmC9jQiiROsavIZgC7lsWNIk,12613
333
- google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=GvsNkxuUH0Z9HpZpTXxTPRL8621lWDbXMwg_UUDtrCg,1939
332
+ google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=3mw2q6Myc6e-ipyr0Jqmu_2HhV0DXmSBti0__-_m9Cc,15022
333
+ google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=_6D2AWSo4kBouhZvWVtNLoPvv-2PvwiVqZGAxGe-DIw,1934
334
334
  google_cloud_pipeline_components/preview/model_evaluation/data_bias_component.py,sha256=YiwkWfbGymX_lDIg_x7AP6nYMm3MQp_NgV8xuSZxCpU,5791
335
335
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_component.py,sha256=XWrI1inQ9hKixFrp2LUdgu7hONYUvbsxv2GXZ-UTkCY,7450
336
336
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_graph_component.py,sha256=jesgBUKbIB_qQoYb5-Bv_LBbFHl0tPyMlVFx-o1eE6k,13624
337
337
  google_cloud_pipeline_components/preview/model_evaluation/model_bias_component.py,sha256=R8WhT8jf_OOpMuABRh2BYTDEcfiGAf6VA-vFgiTymYY,6674
338
338
  google_cloud_pipeline_components/preview/model_evaluation/utils.py,sha256=oRlEvA3zMSTzgxJklZD0A-BzFDx0-PsBHBXZ4kmaREY,7539
339
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=ee_EyGhwqXIjR3Rx9t-o2gV9TssU-VErMU7LtDA7s9k,838
340
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
341
- google_cloud_pipeline_components/preview/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=Sw-OvuJnDId9l1kmpX6zgOA-nEskUV9EQ7rcHqShI9g,8856
342
339
  google_cloud_pipeline_components/proto/__init__.py,sha256=aiPUc6gpQwG9cRTYfw3ChFCJfDr3vAIsm2eMYUDJjJQ,661
343
340
  google_cloud_pipeline_components/proto/gcp_resources_pb2.py,sha256=ssNNm4zjiWbuBUS7IH6kyrvvfmcC_Z5F7hOAuQe_YLk,2134
344
- google_cloud_pipeline_components/proto/preflight_validations_pb2.py,sha256=5MioLb12O4to8LYXFv-irH31BKot2LGtXvxOeXZSQlQ,2588
345
- google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=chzvvNZj5XEvifJbN77L7ZJv7jta-4ycHUKjTLZYCAg,7773
341
+ google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=RGyD_xJ9C_YmUCqgqifnY4HF8Y8kkIHzLcpbbqeXUEw,9939
346
342
  google_cloud_pipeline_components/types/__init__.py,sha256=1WFkL49QEy-gNb6ywQOE4yZkD7DoULAeiL1tLdb3S28,606
347
343
  google_cloud_pipeline_components/types/artifact_types.py,sha256=zvwvzRuFb_s1VS1mtKkltOOACATJk-kG7dVFOUasfw4,23725
348
344
  google_cloud_pipeline_components/v1/__init__.py,sha256=E1Fie3Gq3KKLHEBGUUBeuao-Eo1uwuBfAWWhx2siwaE,765
349
345
  google_cloud_pipeline_components/v1/automl/__init__.py,sha256=l8whL8MMhZ-KMyacLpGzO-5cNxxD2wUW6PtMVx0C_mI,631
350
346
  google_cloud_pipeline_components/v1/automl/forecasting/__init__.py,sha256=FVS4qHJEuAxXZuW9ffOD16_-T0xwaUUBh2j1d4AF8HQ,1488
351
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=2wkTErLpb1jiRBcpX4SNEQvqxfjKASM97869TuJJUt8,51452
352
- google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=nBdhMuVN5mIHYmAAv-hNd8Uax6xKgLHJeN1fYl2NhaM,242529
347
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=MKyHNlM5pgZ-FAOs9TjPq3dxPhPjHDCzc2TFMEbB9Ho,51452
348
+ google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=HMR59BvlfnMKup8zzB0UypL8dsTZpjARRRmZRXMr34c,242529
353
349
  google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=cTDwIp26Kbjgg2lwN7ZFCMEE2ce6rfnM6NIeogTFmCA,93654
354
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=D7mkbazYf_nV9eG0lLxvriXkKFffmEwPRLf69yM0n3A,8363
355
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=Rg4YQAKrMTSkgCX81kIkMFe3cE5EKFCBLr0gpMf85y4,142696
350
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=3hzVV_aad9TaGTr8HgfoJepZg2_uJo_AgoGzPwHDGy0,8363
351
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=UyfUD17f1MSoeBAYx7L946zBvsNDbLbENKBWh2jT3G0,142696
356
352
  google_cloud_pipeline_components/v1/automl/forecasting/utils.py,sha256=Q0SxHlj2jhlpX-buOkxZqDL0wN8Si2-f5iMo08w54ms,14855
357
353
  google_cloud_pipeline_components/v1/automl/tabular/__init__.py,sha256=Clqtp6KThsxtvgu6Egj-dbkftci-VWDSKXXo_T6bTv8,2480
358
- google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=ioG9mEJmOeP5bnz0MP2bONW_32DIp2XnoRvrbrMoXVU,500714
359
- google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=Kko7e1FqGownr78ogRS94SVykN5BD1a0G3CBdGIOgHc,6708
360
- google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=0HIfvN6RtKvhscAjJrEM5vbtb1Kx4TAYZjNQeYXWBY8,6935
361
- google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=ozjVvrX4F9E7Ccyo3QgXsvF8m3iTidD58welHFt_SaE,3108
362
- google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=YEOksQW2YIccQNqxCfFuxuBgVQdOpWkiwMCw0_C3wtE,1333
363
- google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=LLO6ELZ_AlE9Ha4yzmTYGUQ8h7xEi0WISTwzKKy6wzA,5571
364
- google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=ykKRjt8ZZNyYCg_Z53vZ1LQ2Z0Ec5DmoJYOhZz9LEq8,7761
365
- google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=0u7eDwBko8fY_L0EU6D8S9BYl79ricS98BPMG7ENyNY,13367
366
- google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=f3gEPCUifc35dGFNPT4am4oqf1mDMp4VRqdTZc1uoNk,12202
367
- google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=TiIsK6Y3q4tC6dHghnJMxQE5fhy0oNGtHlG1qV8eG0E,8241
354
+ google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=6u0d5gEDvd-DV6ZUjsOmVDaob0je26goe6s41pUz5SE,500714
355
+ google_cloud_pipeline_components/v1/automl/tabular/cv_trainer.py,sha256=SoPLL7PgENmKrVCKd_IHamSV9-8xY46SadGeZOtGKQo,6708
356
+ google_cloud_pipeline_components/v1/automl/tabular/ensemble.py,sha256=C8bT_flee84RdX4D2Wj7virYy3RI1V9bVQmuEGOZz5A,6935
357
+ google_cloud_pipeline_components/v1/automl/tabular/finalizer.py,sha256=RA6MRiNJ45kWRKf-NS-p5ekhXhtBs5pcq_6nqIDKLjA,3108
358
+ google_cloud_pipeline_components/v1/automl/tabular/infra_validator.py,sha256=uo07x13AkxN2nofjmx-vJjy-FpxzNivDdXwJb71H8dw,1333
359
+ google_cloud_pipeline_components/v1/automl/tabular/split_materialized_data.py,sha256=YgN9KfvQIVjHblJjDHEdIgaIZCZyI5_dy52TxSyk3Fg,5571
360
+ google_cloud_pipeline_components/v1/automl/tabular/stage_1_tuner.py,sha256=A5HZuuEXo8Z0Fu1Ht9-Nw5oLKOadK4RBBu29nN_bDe4,7761
361
+ google_cloud_pipeline_components/v1/automl/tabular/stats_and_example_gen.py,sha256=5cBeSJy_AfHEPc9PT3Q3meZaadUo5jRgNX_HKj6htNo,13367
362
+ google_cloud_pipeline_components/v1/automl/tabular/training_configurator_and_validator.py,sha256=f_x9pJMJKElaDW3eLMVHNMQRgMVGtZkUUgjkXRJC58w,12202
363
+ google_cloud_pipeline_components/v1/automl/tabular/transform.py,sha256=jLJIpNaS9gPt1-v5-df06_fGnfJjZvcVOX5CzBQYBAc,8241
368
364
  google_cloud_pipeline_components/v1/automl/tabular/utils.py,sha256=2iBuwuUXfDKhZA1nfhfvl_IcnI4j0uesR4TbM9W13uU,74625
369
365
  google_cloud_pipeline_components/v1/automl/tabular/deprecated/default_pipeline.json,sha256=r9w-yavDpzGQX94geZ4q58aJdQdn2VvCm14IsNFIZyQ,321170
370
366
  google_cloud_pipeline_components/v1/automl/training_job/__init__.py,sha256=oCltxPx9ycdB2VJYLTNx3_o5t1zBXJFjNUOFFpoADwE,1803
@@ -507,24 +503,27 @@ google_cloud_pipeline_components/v1/model/get_model/__init__.py,sha256=oAWKl9PXS
507
503
  google_cloud_pipeline_components/v1/model/get_model/component.py,sha256=lx5x2MJ-Ji75z12W1RMqKlGzxbmgZZAmYBy48XQmWFI,2089
508
504
  google_cloud_pipeline_components/v1/model/upload_model/__init__.py,sha256=6uwVQw6h3TXxei5imUE4JaS97XXzDRPQyNnTE-qFjck,661
509
505
  google_cloud_pipeline_components/v1/model/upload_model/component.py,sha256=6zy9G2AK2twiyT-B2X15qovvi6qHu0koRzzzelgN8CQ,7280
510
- google_cloud_pipeline_components/v1/model_evaluation/__init__.py,sha256=haAiMuha2cEVJQjOcbf3XblUBdSieLm_JUT_wwyVssc,2739
511
- google_cloud_pipeline_components/v1/model_evaluation/classification_component.py,sha256=x0pUY4OwFIkmS11Q7rDLI6fspaDUBo6wU5BBP2jAKC0,12122
506
+ google_cloud_pipeline_components/v1/model_evaluation/__init__.py,sha256=CjEllp-NmgeZ77HKgYpM1polX5Q1wo3ihxMHSvnozrc,2897
507
+ google_cloud_pipeline_components/v1/model_evaluation/classification_component.py,sha256=4XsQsqLUNv0Ftw-V-rFii2Iega1yQQkLP3ggMof1sVI,12087
512
508
  google_cloud_pipeline_components/v1/model_evaluation/error_analysis_pipeline.py,sha256=l972cEWDViVV41oCy0jTsX96Pau49D3KdJA3yAjKEY0,20122
513
509
  google_cloud_pipeline_components/v1/model_evaluation/evaluated_annotation_pipeline.py,sha256=JskLsIHvLNNvNaMD8gTa0NWlB5gKiSSyqeC78Fn5OW8,12142
514
510
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_feature_attribution_pipeline.py,sha256=sEoMoR5ITp0fWGnbUvGO6ZApz5Z04URseMONyMytSWI,46187
515
511
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_pipeline.py,sha256=p-GH_tVqffHwck5Sll0BHsnvVAHQk48WNAUohZxATcs,37108
516
512
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py,sha256=aiZOK5BE5mdqJL3s4pU1Y_ynHvWBE9JIxl9UrJuNsco,42404
517
513
  google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py,sha256=ChDwHvPCn0prrK1FLvEhAbaTmA153M9NG3Wj3QIlNHs,51173
518
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=Vf_O-8VWKZlR_tCmFNNcQWp6VWK8c67IBWKxbt3ZQBg,11672
519
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=ufVZwpEerSLLo_yGJVh7cgBBTeL3RmkVuWKHkCiaQ9U,11056
514
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=hwQrgFL79hyLiwMeIRdOzGZGNtXPS1G0n9_YnZDhf0w,11981
515
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=z1Bx8p603cxGC_nre3tUs-3KF1O5t5xBwAWmK2H9R3U,11529
520
516
  google_cloud_pipeline_components/v1/model_evaluation/forecasting_component.py,sha256=gOnvKAJWa3velczeuVBCzW6b_tcc2v_lNFqHXGhjD44,10017
521
517
  google_cloud_pipeline_components/v1/model_evaluation/regression_component.py,sha256=eFrjrKQot3-SlRCoKoTOEsyp2Xj0GfDtrjpxTDKAHYY,9117
518
+ google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=57gYyoAJwLIeXoLTTyVqOWgkj7dlUP4IKM4OmMabCRM,828
519
+ google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
520
+ google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=Jzrd6sQsj0E_ECqsODJ-95dk85T6KgsITsvJh6qVpxc,8851
522
521
  google_cloud_pipeline_components/v1/vertex_notification_email/__init__.py,sha256=YIRljNy_oHY_vRda-kfhm5QiulNd_SIIPbmpzOiYJ0k,863
523
522
  google_cloud_pipeline_components/v1/vertex_notification_email/component.py,sha256=Dau8ZI0mzLBnLOUBQm6EtK8gbtX1u57t76Ud5qlg9xc,2163
524
523
  google_cloud_pipeline_components/v1/wait_gcp_resources/__init__.py,sha256=w6dfz-rYsYnxFapRH1Dix3GVz0mhPW0m1IVpE6z8jbg,878
525
524
  google_cloud_pipeline_components/v1/wait_gcp_resources/component.py,sha256=Nsfj5c3eeZq83fHLvv2IlpK4jrjxLxRksFYOl5W6JnA,2468
526
- google_cloud_pipeline_components-2.13.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
527
- google_cloud_pipeline_components-2.13.0.dist-info/METADATA,sha256=Sm911jjQnk7LD_wKCBuZ2elaBUbL3nqtZYnbmDgOKR8,5890
528
- google_cloud_pipeline_components-2.13.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
529
- google_cloud_pipeline_components-2.13.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
530
- google_cloud_pipeline_components-2.13.0.dist-info/RECORD,,
525
+ google_cloud_pipeline_components-2.14.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
526
+ google_cloud_pipeline_components-2.14.0.dist-info/METADATA,sha256=EkbuKB-faNaHwR-lyX-5PohaFtT9ZDpxs-hgf59YP04,5862
527
+ google_cloud_pipeline_components-2.14.0.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
528
+ google_cloud_pipeline_components-2.14.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
529
+ google_cloud_pipeline_components-2.14.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.37.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,47 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # Protobuf Python Version: 0.20240110.0
4
- """Generated protocol buffer code."""
5
- from google.protobuf import descriptor as _descriptor
6
- from google.protobuf import descriptor_pool as _descriptor_pool
7
- from google.protobuf import symbol_database as _symbol_database
8
- from google.protobuf.internal import builder as _builder
9
- # @@protoc_insertion_point(imports)
10
-
11
- _sym_db = _symbol_database.Default()
12
-
13
-
14
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
15
- b'\n\x13preflight_validations.proto\x12\x15preflight_validations"\x8e\x02\n\x0fValidationItems\x12R\n\x0esa_validations\x18\x01'
16
- b' \x03(\x0b\x32:.preflight_validations.GoogleCloudServiceAccountValidation\x12S\n\x11quota_validations\x18\x02'
17
- b' \x03(\x0b\x32\x38.preflight_validations.GoogleCloudProjectQuotaValidation\x12R\n\x0f\x61pi_validations\x18\x03'
18
- b' \x03(\x0b\x32\x39.preflight_validations.GoogleCloudApiEnablementValidation"p\n!GoogleCloudProjectQuotaValidation\x12\x13\n\x0bmetric_name\x18\x01'
19
- b' \x01(\t\x12\x15\n\x0bint64_value\x18\x02'
20
- b' \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x03'
21
- b' \x01(\x01H\x00\x42\x07\n\x05value"\x8d\x01\n#GoogleCloudServiceAccountValidation\x12\x1f\n\x17\x64\x65\x66\x61ult_principal_email\x18\x01'
22
- b' \x01(\t\x12\x1c\n\x14override_placeholder\x18\x02'
23
- b' \x01(\t\x12\x13\n\x0bpermissions\x18\x03'
24
- b' \x03(\t\x12\x12\n\nrole_names\x18\x04'
25
- b' \x03(\t";\n"GoogleCloudApiEnablementValidation\x12\x15\n\rservice_names\x18\x01'
26
- b' \x03(\tB\x02P\x01\x62\x06proto3'
27
- )
28
-
29
- _globals = globals()
30
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
- _builder.BuildTopDescriptorsAndMessages(
32
- DESCRIPTOR,
33
- 'google_cloud_pipeline_components.google_cloud_pipeline_components.proto.preflight_validations_pb2',
34
- _globals,
35
- )
36
- if not _descriptor._USE_C_DESCRIPTORS:
37
- _globals['DESCRIPTOR']._loaded_options = None
38
- _globals['DESCRIPTOR']._serialized_options = b'P\001'
39
- _globals['_VALIDATIONITEMS']._serialized_start = 142
40
- _globals['_VALIDATIONITEMS']._serialized_end = 412
41
- _globals['_GOOGLECLOUDPROJECTQUOTAVALIDATION']._serialized_start = 414
42
- _globals['_GOOGLECLOUDPROJECTQUOTAVALIDATION']._serialized_end = 526
43
- _globals['_GOOGLECLOUDSERVICEACCOUNTVALIDATION']._serialized_start = 529
44
- _globals['_GOOGLECLOUDSERVICEACCOUNTVALIDATION']._serialized_end = 670
45
- _globals['_GOOGLECLOUDAPIENABLEMENTVALIDATION']._serialized_start = 672
46
- _globals['_GOOGLECLOUDAPIENABLEMENTVALIDATION']._serialized_end = 731
47
- # @@protoc_insertion_point(module_scope)