리뷰 Agent Platform 설명 가능한 AI를 사용한 이미지 분류 모델 설명개
리뷰 30656개
Sunil P. · 3개월 전에 리뷰됨
Rami Reddy S. · 3개월 전에 리뷰됨
Manisha K. · 3개월 전에 리뷰됨
SYED T. · 3개월 전에 리뷰됨
Alikya M. · 3개월 전에 리뷰됨
Luis A. · 3개월 전에 리뷰됨
Gangai J. · 3개월 전에 리뷰됨
Showri B. · 3개월 전에 리뷰됨
Thirumalai T. · 3개월 전에 리뷰됨
Darshini C. · 3개월 전에 리뷰됨
pavankumar M. · 3개월 전에 리뷰됨
Jamil J. · 3개월 전에 리뷰됨
Please fix the setup code as the entire time allotted for the Lab is usually spent trying to fix the tensorflow-hub import error involving pkg_resources. See the steps that worked for me below: Fix: Root Cause The machine has multiple Python environments (/opt/conda/, ~/.local/, plus conda envs for pytorch, tensorflow, jupyterlab). The notebook kernel uses /opt/conda/bin/python, but setuptools was either missing or installed in the wrong version there. The old version of tensorflow_hub in /opt/conda/ depends on pkg_resources, which is part of setuptools — but newer setuptools (70+) broke this by making pkg_resources no longer automatically available. What Was Tried (in order) pip install --user setuptools → already satisfied, but in the wrong environment pip install --user --force-reinstall setuptools → installed to ~/.local/, not where the kernel looks pip install --force-reinstall tensorflow-hub tensorflow-model-remediation → installed correctly but pkg_resources still broken /opt/conda/bin/pip install --force-reinstall tensorflow-hub → put packages in the right place but setuptools was still too new /opt/conda/bin/pip install --force-reinstall setuptools==69.5.1 ✅ → this fixed it Why setuptools==69.5.1 Was the Fix The find command revealed that pkg_resources only existed inside pip's own vendor folder, not as a standalone importable module. This confirmed that setuptools was either missing or too new. Versions 70+ of setuptools changed how pkg_resources is exposed, breaking older packages that import it directly. Pinning to 69.5.1 restored the old behaviour and made pkg_resources importable again. Key Lesson Always install packages using /opt/conda/bin/pip (not pip or pip install --user) when the notebook kernel is /opt/conda/bin/python. The --user flag installs to ~/.local/, which may or may not be on the kernel's path, causing confusing split-environment issues.
OBINNA O. · 3개월 전에 리뷰됨
Vishwa K. · 3개월 전에 리뷰됨
very good
Sakshi S. · 3개월 전에 리뷰됨
Shivanshi B. · 3개월 전에 리뷰됨
Has errors
Dong K. · 3개월 전에 리뷰됨
SAMIKSHA JAGTAP B. · 3개월 전에 리뷰됨
Puvi y. · 3개월 전에 리뷰됨
Jeeva M. · 3개월 전에 리뷰됨
Arivu G. · 3개월 전에 리뷰됨
Partha S. · 3개월 전에 리뷰됨
BIKKINA H. · 3개월 전에 리뷰됨
Abhijeet G. · 3개월 전에 리뷰됨
Srinivasan H. · 3개월 전에 리뷰됨
Google은 게시된 리뷰가 제품을 구매 또는 사용한 소비자에 의해 작성되었음을 보증하지 않습니다. 리뷰는 Google의 인증을 거치지 않습니다.