리뷰 Vertex AI Pipelines 소개개
리뷰 5535개
Lakshay O. · 1년 초과 전에 리뷰됨
Jaco M. · 1년 초과 전에 리뷰됨
Lab should have been fine if it were not for the failure to import AIPLATFORMCLIENT among others, But good i have a view of the required knowledge
Kamurasi J. · 1년 초과 전에 리뷰됨
pakayse k. · 1년 초과 전에 리뷰됨
Kevin Q. · 1년 초과 전에 리뷰됨
Multiple steps of this lab do not work. Due to package incompatibility. You currently need to run: !pip3 install --upgrade setuptools"<71.0.0" and !pip uninstall -y shapely pygeos geopandas # Install specific versions of shapely, pygeos, and geopandas known to be compatible !pip install shapely==1.8.5.post1 pygeos==0.12.0 geopandas==0.10.2 to get the code to run.
Aaron B. · 1년 초과 전에 리뷰됨
Michal R. · 1년 초과 전에 리뷰됨
Installation issue
narayana s. · 1년 초과 전에 리뷰됨
Jose David J. · 1년 초과 전에 리뷰됨
Library kfp needed for this lab can't be installed with pip.
Rafael G. · 1년 초과 전에 리뷰됨
narayana s. · 1년 초과 전에 리뷰됨
Mohan Krishna A. · 1년 초과 전에 리뷰됨
The lab was not running there is an issue due to the libraries kfp and google_cloud_components.
James V. · 1년 초과 전에 리뷰됨
Dennis A. · 1년 초과 전에 리뷰됨
Daniel C. · 1년 초과 전에 리뷰됨
Nijan B. · 1년 초과 전에 리뷰됨
Juan Camilo B. · 1년 초과 전에 리뷰됨
Moula V. · 1년 초과 전에 리뷰됨
Muhammad Hamza A. · 1년 초과 전에 리뷰됨
Jesus Eduardo J. · 1년 초과 전에 리뷰됨
Yashu W. · 1년 초과 전에 리뷰됨
The lab works awful. The library google-cloud-aiplatform doesn't compile with the version of the Shapely library that is defined on this lab to install as "shapely<2", I spent most of the time trying to fixing this issue of non compilation, but it didn't work. And this is a mayor mistake, because I wasn't able to run some of the final cells of the jupyter lab
Vicente W. · 1년 초과 전에 리뷰됨
Not sure if I redo will having the same error: Collecting kfp Using cached kfp-2.8.0.tar.gz (594 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [40 lines of output] running egg_info creating /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info writing /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/PKG-INFO writing dependency_links to /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/dependency_links.txt writing entry points to /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/entry_points.txt writing requirements to /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/requires.txt writing top-level names to /var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/top_level.txt writing manifest file '/var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/SOURCES.txt' reading manifest file '/var/tmp/pip-pip-egg-info-uobux3z_/kfp.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' Traceback (most recent call last): File "<string>", line 2, in <module> File "<pip-setuptools-caller>", line 34, in <module> File "/var/tmp/pip-install-j1itsgbo/kfp_673517c3b79b4dc28001e78367d1503f/setup.py", line 60, in <module> setuptools.setup( File "/opt/conda/lib/python3.10/site-packages/setuptools/__init__.py", line 108, in setup return distutils.core.setup(**attrs) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 184, in setup return run_commands(dist) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 200, in run_commands dist.run_commands() File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 970, in run_commands self.run_command(cmd) File "/opt/conda/lib/python3.10/site-packages/setuptools/dist.py", line 956, in run_command super().run_command(command) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 989, in run_command cmd_obj.run() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 310, in run self.find_sources() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 318, in find_sources mm.run() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 544, in run self.prune_file_list() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 610, in prune_file_list base_dir = self.distribution.get_fullname() File "/opt/conda/lib/python3.10/site-packages/setuptools/_core_metadata.py", line 266, in get_fullname return _distribution_fullname(self.get_name(), self.get_version()) File "/opt/conda/lib/python3.10/site-packages/setuptools/_core_metadata.py", line 284, in _distribution_fullname canonicalize_version(version, strip_trailing_zero=False), TypeError: canonicalize_version() got an unexpected keyword argument 'strip_trailing_zero' [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: metadata-generation-failed × Encountered error while generating package metadata. ╰─> See above for output. note: This is an issue with the package mentioned above, not pip. hint: See above for details. --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) Cell In[18], line 8 5 from kfp.v2 import compiler 6 from kfp.v2.dsl import (Artifact, Dataset, Input, InputPath, Model, Output, 7 OutputPath, ClassificationMetrics, Metrics, component) ----> 8 from kfp.v2.google.client import AIPlatformClient 9 from google.cloud import aiplatform 10 from google_cloud_pipeline_components import aiplatform as gcc_aip ModuleNotFoundError: No module named 'kfp.v2.google'
Wiehan W. · 1년 초과 전에 리뷰됨
Manju R. · 1년 초과 전에 리뷰됨
Collecting kfp Using cached kfp-2.8.0.tar.gz (594 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [40 lines of output] running egg_info creating /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info writing /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/PKG-INFO writing dependency_links to /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/dependency_links.txt writing entry points to /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/entry_points.txt writing requirements to /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/requires.txt writing top-level names to /var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/top_level.txt writing manifest file '/var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/SOURCES.txt' reading manifest file '/var/tmp/pip-pip-egg-info-zr8z8vi6/kfp.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' Traceback (most recent call last): File "<string>", line 2, in <module> File "<pip-setuptools-caller>", line 34, in <module> File "/var/tmp/pip-install-l6_g3f05/kfp_0f413a2c636f4142abc5b5f2259ed47a/setup.py", line 60, in <module> setuptools.setup( File "/opt/conda/lib/python3.10/site-packages/setuptools/__init__.py", line 108, in setup return distutils.core.setup(**attrs) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 184, in setup return run_commands(dist) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 200, in run_commands dist.run_commands() File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 970, in run_commands self.run_command(cmd) File "/opt/conda/lib/python3.10/site-packages/setuptools/dist.py", line 945, in run_command super().run_command(command) File "/opt/conda/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 989, in run_command cmd_obj.run() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 310, in run self.find_sources() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 318, in find_sources mm.run() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 544, in run self.prune_file_list() File "/opt/conda/lib/python3.10/site-packages/setuptools/command/egg_info.py", line 610, in prune_file_list base_dir = self.distribution.get_fullname() File "/opt/conda/lib/python3.10/site-packages/setuptools/_core_metadata.py", line 266, in get_fullname return _distribution_fullname(self.get_name(), self.get_version()) File "/opt/conda/lib/python3.10/site-packages/setuptools/_core_metadata.py", line 284, in _distribution_fullname canonicalize_version(version, strip_trailing_zero=False), TypeError: canonicalize_version() got an unexpected keyword argument 'strip_trailing_zero' [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: metadata-generation-failed × Encountered error while generating package metadata. ╰─> See above for output. note: This is an issue with the package mentioned above, not pip. hint: See above for details. CANT MAKE THE LAB SINCE IT ALWAYS THROWS AN ERROR WHEN INSTALLING KFP
Renzo B. · 1년 초과 전에 리뷰됨
Google은 게시된 리뷰가 제품을 구매 또는 사용한 소비자에 의해 작성되었음을 보증하지 않습니다. 리뷰는 Google의 인증을 거치지 않습니다.