【跑实验04】CLIP安装报错,setup.py如何安装,图像编码器(image_encoder)的使用(含源代码)

news2024/11/13 9:36:38

文章目录

  • 一、如何解决CLIP安装报错
  • 二、setup.py如何安装?
  • 三、图像编码器(image_encoder)的使用

一、如何解决CLIP安装报错

我第一次尝试安装CLIP,采用的方法是pip的方法:

pip install clip

但是安装后,无法使用:

在这里插入图片描述

明确一下CLIP如何正确安装:

要安装CLIP,您可以按照以下步骤进行操作:

  1. 确保您已经安装了Python环境:CLIP是一个Python库,因此您需要确保在您的计算机上安装了Python。您可以从官方网站(https://www.python.org)下载并安装最新的Python版本。
  2. 创建一个新的虚拟环境(可选):虽然这一步是可选的,但我们建议在安装CLIP之前创建一个新的虚拟环境。这有助于隔离CLIP的安装和依赖项,以防止与其他项目发生冲突。您可以使用Python的虚拟环境工具(如venv、conda等)创建和管理虚拟环境。
  3. 安装PyTorch:CLIP依赖于PyTorch库,因此您需要首先安装PyTorch。您可以在PyTorch的官方网站(https://pytorch.org)上找到适合您计算机配置的安装命令。根据您的系统和CUDA版本选择相应的安装命令。
  4. 安装CLIP:一旦PyTorch安装完成,您可以使用pip命令安装CLIP库。
  5. 验证安装:安装完成后,您可以尝试导入CLIP并运行一些基本的代码来验证安装是否成功。在Python交互式环境或脚本中执行以下代码:
import torch
import clip

print("CLIP version:", clip.__version__)

如果您没有看到任何错误消息并且能够成功打印出CLIP的版本号,则表示CLIP已成功安装在您的环境中。

但是这样我的还不能成功!

我找到了CLIP的官方网站,在Github上:

https://github.com/openai/CLIP

在这里插入图片描述

首先,安装 PyTorch 1.7.1(或更高版本)和 torchvision,以及小的附加依赖项,然后将此存储库安装为 Python 包。 在 CUDA GPU 机器上,以下操作即可解决问题:

conda install --yes -c pytorch pytorch=1.7.1 torchvision cudatoolkit=11.0
pip install ftfy regex tqdm
pip install git+https://github.com/openai/CLIP.git

但是我们的安装出现了错误:

在这里插入图片描述

由于网络问题,我尝试安装CLIP时出现了错误。请尝试以下解决方案:

  1. 网络连接问题:确保您的计算机可以正常访问互联网,并且没有任何防火墙或代理设置阻止对GitHub的访问。如果您使用代理,请确保在安装过程中设置了适当的代理配置。
  2. 使用代替源:尝试使用其他源或镜像来安装CLIP。您可以尝试将pip命令的源更改为其他源,如清华大学的镜像:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple git+https://github.com/openai/CLIP.git

上述命令将使用清华大学的PyPI镜像源来安装CLIP。

  1. 手动克隆并安装:如果使用pip安装仍然失败,您可以尝试手动克隆CLIP的GitHub仓库并进行安装。请按照以下步骤操作:

在终端中,导航到您想要将CLIP存储的目录。

执行以下命令克隆CLIP仓库:

git clone https://github.com/openai/CLIP.git

完成克隆后,执行以下命令进入CLIP目录:

cd CLIP

然后,执行以下命令进行安装:

pip install -e .

这将使用pip命令以编辑模式安装CLIP。

(wzk_base) wangzhenkuan@pc-System-Product-Name:~/CLIP-main$ python setup.py install
running install
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/setuptools/command/easy_install.py:144: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running bdist_egg
running egg_info
creating clip.egg-info
writing clip.egg-info/PKG-INFO
writing dependency_links to clip.egg-info/dependency_links.txt
writing requirements to clip.egg-info/requires.txt
writing top-level names to clip.egg-info/top_level.txt
writing manifest file 'clip.egg-info/SOURCES.txt'
file clip.py (for module clip) not found
reading manifest file 'clip.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'clip.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
file clip.py (for module clip) not found
creating build
creating build/lib
creating build/lib/clip
copying clip/clip.py -> build/lib/clip
copying clip/__init__.py -> build/lib/clip
copying clip/model.py -> build/lib/clip
copying clip/simple_tokenizer.py -> build/lib/clip
copying clip/bpe_simple_vocab_16e6.txt.gz -> build/lib/clip
file clip.py (for module clip) not found
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/clip
copying build/lib/clip/clip.py -> build/bdist.linux-x86_64/egg/clip
copying build/lib/clip/__init__.py -> build/bdist.linux-x86_64/egg/clip
copying build/lib/clip/model.py -> build/bdist.linux-x86_64/egg/clip
copying build/lib/clip/simple_tokenizer.py -> build/bdist.linux-x86_64/egg/clip
copying build/lib/clip/bpe_simple_vocab_16e6.txt.gz -> build/bdist.linux-x86_64/egg/clip
byte-compiling build/bdist.linux-x86_64/egg/clip/clip.py to clip.cpython-310.pyc
byte-compiling build/bdist.linux-x86_64/egg/clip/__init__.py to __init__.cpython-310.pyc
byte-compiling build/bdist.linux-x86_64/egg/clip/model.py to model.cpython-310.pyc
byte-compiling build/bdist.linux-x86_64/egg/clip/simple_tokenizer.py to simple_tokenizer.cpython-310.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying clip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying clip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying clip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying clip.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying clip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
clip.__pycache__.simple_tokenizer.cpython-310: module references __file__
creating dist
creating 'dist/clip-1.0-py3.10.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing clip-1.0-py3.10.egg
creating /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/clip-1.0-py3.10.egg
Extracting clip-1.0-py3.10.egg to /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Adding clip 1.0 to easy-install.pth file

Installed /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/clip-1.0-py3.10.egg
Processing dependencies for clip==1.0
Searching for regex
Reading https://pypi.org/simple/regex/
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-02-16 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning:  is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-02-23 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-03-11 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-05-21 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-06-05 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-06-26 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-08-04 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-04 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-12 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-21 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-22 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-23 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-24 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-25 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-10-26 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-11-29 is an invalid version and will not be supported in a future release
  warnings.warn(
/home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 2013-12-31 is an invalid version and will not be supported in a future release
  warnings.warn(
Downloading https://files.pythonhosted.org/packages/f4/59/de8f00338fa853b1616e3ea3a335565dea69057fd68c8d159055a90a563f/regex-2023.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl#sha256=2239d95d8e243658b8dbb36b12bd10c33ad6e6933a54d36ff053713f129aa536
Best match: regex 2023.6.3
Processing regex-2023.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Installing regex-2023.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl to /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Adding regex 2023.6.3 to easy-install.pth file

Installed /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/regex-2023.6.3-py3.10-linux-x86_64.egg
Searching for ftfy
Reading https://pypi.org/simple/ftfy/
Downloading https://files.pythonhosted.org/packages/e1/1e/bf736f9576a8979752b826b75cbd83663ff86634ea3055a766e2d8ad3ee5/ftfy-6.1.1-py3-none-any.whl#sha256=0ffd33fce16b54cccaec78d6ec73d95ad370e5df5a25255c8966a6147bd667ca
Best match: ftfy 6.1.1
Processing ftfy-6.1.1-py3-none-any.whl
Installing ftfy-6.1.1-py3-none-any.whl to /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Adding ftfy 6.1.1 to easy-install.pth file
Installing ftfy script to /home/miniconda3/envs/wzk_base/bin

Installed /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/ftfy-6.1.1-py3.10.egg
Searching for certifi>=2017.4.17
Reading https://pypi.org/simple/certifi/
Downloading https://files.pythonhosted.org/packages/9d/19/59961b522e6757f0c9097e4493fa906031b95b3ebe9360b2c3083561a6b4/certifi-2023.5.7-py3-none-any.whl#sha256=c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716
Best match: certifi 2023.5.7
Processing certifi-2023.5.7-py3-none-any.whl
Installing certifi-2023.5.7-py3-none-any.whl to /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Adding certifi 2023.5.7 to easy-install.pth file

Installed /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/certifi-2023.5.7-py3.10.egg
Searching for wheel
Reading https://pypi.org/simple/wheel/
Downloading https://files.pythonhosted.org/packages/61/86/cc8d1ff2ca31a312a25a708c891cf9facbad4eae493b3872638db6785eb5/wheel-0.40.0-py3-none-any.whl#sha256=d236b20e7cb522daf2390fa84c55eea81c5c30190f90f29ae2ca1ad8355bf247
Best match: wheel 0.40.0
Processing wheel-0.40.0-py3-none-any.whl
Installing wheel-0.40.0-py3-none-any.whl to /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Adding wheel 0.40.0 to easy-install.pth file
Installing wheel script to /home/miniconda3/envs/wzk_base/bin

Installed /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages/wheel-0.40.0-py3.10.egg
Searching for torchvision==0.15.1
Best match: torchvision 0.15.1
Adding torchvision 0.15.1 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for torch==2.0.0
Best match: torch 2.0.0
Adding torch 2.0.0 to easy-install.pth file
Installing convert-caffe2-to-onnx script to /home/miniconda3/envs/wzk_base/bin
Installing convert-onnx-to-caffe2 script to /home/miniconda3/envs/wzk_base/bin
Installing torchrun script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for tqdm==4.64.1
Best match: tqdm 4.64.1
Adding tqdm 4.64.1 to easy-install.pth file
Installing tqdm script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for requests==2.28.1
Best match: requests 2.28.1
Adding requests 2.28.1 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for numpy==1.24.2
Best match: numpy 1.24.2
Adding numpy 1.24.2 to easy-install.pth file
Installing f2py script to /home/miniconda3/envs/wzk_base/bin
Installing f2py3 script to /home/miniconda3/envs/wzk_base/bin
Installing f2py3.10 script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for triton==2.0.0
Best match: triton 2.0.0
Adding triton 2.0.0 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-nvtx-cu11==11.7.91
Best match: nvidia-nvtx-cu11 11.7.91
Adding nvidia-nvtx-cu11 11.7.91 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-nccl-cu11==2.14.3
Best match: nvidia-nccl-cu11 2.14.3
Adding nvidia-nccl-cu11 2.14.3 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cusparse-cu11==11.7.4.91
Best match: nvidia-cusparse-cu11 11.7.4.91
Adding nvidia-cusparse-cu11 11.7.4.91 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cusolver-cu11==11.4.0.1
Best match: nvidia-cusolver-cu11 11.4.0.1
Adding nvidia-cusolver-cu11 11.4.0.1 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-curand-cu11==10.2.10.91
Best match: nvidia-curand-cu11 10.2.10.91
Adding nvidia-curand-cu11 10.2.10.91 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cufft-cu11==10.9.0.58
Best match: nvidia-cufft-cu11 10.9.0.58
Adding nvidia-cufft-cu11 10.9.0.58 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cublas-cu11==11.10.3.66
Best match: nvidia-cublas-cu11 11.10.3.66
Adding nvidia-cublas-cu11 11.10.3.66 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cudnn-cu11==8.5.0.96
Best match: nvidia-cudnn-cu11 8.5.0.96
Adding nvidia-cudnn-cu11 8.5.0.96 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cuda-cupti-cu11==11.7.101
Best match: nvidia-cuda-cupti-cu11 11.7.101
Adding nvidia-cuda-cupti-cu11 11.7.101 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cuda-runtime-cu11==11.7.99
Best match: nvidia-cuda-runtime-cu11 11.7.99
Adding nvidia-cuda-runtime-cu11 11.7.99 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for nvidia-cuda-nvrtc-cu11==11.7.99
Best match: nvidia-cuda-nvrtc-cu11 11.7.99
Adding nvidia-cuda-nvrtc-cu11 11.7.99 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for Jinja2==3.1.2
Best match: Jinja2 3.1.2
Adding Jinja2 3.1.2 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for networkx==3.1
Best match: networkx 3.1
Adding networkx 3.1 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for sympy==1.11.1
Best match: sympy 1.11.1
Adding sympy 1.11.1 to easy-install.pth file
Installing isympy script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for typing-extensions==4.5.0
Best match: typing-extensions 4.5.0
Adding typing-extensions 4.5.0 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for filelock==3.11.0
Best match: filelock 3.11.0
Adding filelock 3.11.0 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for wcwidth==0.2.6
Best match: wcwidth 0.2.6
Adding wcwidth 0.2.6 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for urllib3==1.26.14
Best match: urllib3 1.26.14
Adding urllib3 1.26.14 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for idna==3.4
Best match: idna 3.4
Adding idna 3.4 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for charset-normalizer==2.0.4
Best match: charset-normalizer 2.0.4
Adding charset-normalizer 2.0.4 to easy-install.pth file
Installing normalizer script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for lit==16.0.1
Best match: lit 16.0.1
Adding lit 16.0.1 to easy-install.pth file
Installing lit script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for cmake==3.26.3
Best match: cmake 3.26.3
Adding cmake 3.26.3 to easy-install.pth file
Installing cmake script to /home/miniconda3/envs/wzk_base/bin
Installing cpack script to /home/miniconda3/envs/wzk_base/bin
Installing ctest script to /home/miniconda3/envs/wzk_base/bin

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for setuptools==65.6.3
Best match: setuptools 65.6.3
Adding setuptools 65.6.3 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for MarkupSafe==2.1.2
Best match: MarkupSafe 2.1.2
Adding MarkupSafe 2.1.2 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Searching for mpmath==1.3.0
Best match: mpmath 1.3.0
Adding mpmath 1.3.0 to easy-install.pth file

Using /home/miniconda3/envs/wzk_base/lib/python3.10/site-packages
Finished processing dependencies for clip==1.0

在这里插入图片描述
安装成功!

二、setup.py如何安装?

要运行setup.py文件,通常是为了安装Python包或进行包的相关操作。以下是运行setup.py的基本步骤:

  1. 打开命令行终端或命令提示符,并切换到包含setup.py文件的目录。
  2. 确保您已经安装了适当的Python环境和相关依赖项,以便在运行setup.py时可以成功执行。
  3. 运行setup.py文件的命令,一般为以下格式:
python setup.py <命令>

其中,<命令>是您要执行的具体命令,可以是以下常见的命令之一:

  1. install:安装包。这将安装包及其相关依赖项到Python环境中。
  2. develop:以开发模式安装包。这将使用符号链接的方式将包安装到Python环境中,方便在开发过程中进行修改和调试。
  3. sdist:构建源代码分发包。
  4. bdist_wheel:构建wheel格式的分发包。
  5. clean:清除生成的构建文件和临时文件。

您可以根据需要选择适当的命令,并将其替换为<命令>部分。

请注意,具体的操作和可用的命令可能会因您使用的包和项目而有所不同。通常,包的作者会在其文档中提供详细的使用说明和指南,建议参阅相应包的文档以获取更准确的setup.py运行说明。

如果您不确定要运行的具体命令,可以尝试运行python setup.py --help命令,它将显示关于setup.py支持的命令和选项的帮助信息。

三、图像编码器(image_encoder)的使用

当我们使用CLIP库时,可以通过以下步骤来加载预训练的CLIP模型并对图像进行编码:

  1. 导入所需的库:
import torch
import clip
from PIL import Image

我们导入了torch、clip和PIL模块,分别用于处理张量操作、加载CLIP模型和处理图像。

  1. 定义设备:
device = "cuda" if torch.cuda.is_available() else "cpu"

我们检查是否有可用的GPU,并根据情况将设备设置为cuda或cpu。

  1. 加载预训练的CLIP模型:
model, preprocess = clip.load("ViT-B/32", device=device)

使用clip.load函数加载预训练的CLIP模型。在这个例子中,我们加载了一个名为"ViT-B/32"的模型,您也可以根据需要选择其他模型。

  1. 加载和预处理图像:
image_path = 'dog.jpg'
image = Image.open(image_path).convert('RGB')
image_input = preprocess(image).unsqueeze(0).to(device)

通过使用Image模块加载图像文件,并将其转换为RGB格式。然后,我们使用预定义的preprocess函数对图像进行预处理,以获得模型所需的输入格式。最后,我们将图像张量移动到之前定义的设备上。

  1. 图像编码:
with torch.no_grad():
    image_features = model.encode_image(image_input)

在一个没有梯度计算的上下文中,使用model.encode_image函数对图像进行编码。该函数将图像输入CLIP模型,并返回图像的特征向量表示。

  1. 输出图像向量表示:
print("Image features shape:", image_features.shape)

最后,我们打印出图像特征的形状,以便查看编码后的图像向量表示。

请确保已经安装了CLIP库并具备所需的依赖项。此外,确保指定的图像文件存在,并根据需要调整文件路径。

这是使用CLIP库加载预训练模型和对图像进行编码的基本过程。您可以根据具体的应用场景进行调整和扩展。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/676082.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

代码随想录二刷 day31 | 贪心之 理论基础 455.分发饼干 376. 摆动序列 53. 最大子序和

day31 理论基础什么是贪心贪心算法的套路一般解题步骤 455.分发饼干376. 摆动序列情况一&#xff1a;上下坡中有平坡情况二&#xff1a;数组首尾两端情况三&#xff1a;单调坡度有平坡 53. 最大子序和 理论基础 什么是贪心 贪心的本质是选择每一阶段的局部最优&#xff0c;从…

vue3基础 ---- 上

目录 一.vue3介绍 1. 官网初识 2.环境搭建 2-1 线上尝试 2-2 CDN使用 2-3 Vue CLI 2-4 Vite 二.vue3基础 1.模板语法 1-1 我的第一个vue应用 1-2 应用背后的真相 1-3 模板语法-新的皮肤来了 1-4 Todolist-来个案例 1-5 点击变心案例 - 是变色 1-6 v-html- 模板…

【libdatachannel】pycharm运行streamer的信令服务及streamer与js客户端本机联调2

后面与ws服务器一直有ping pong2023-06-23 10:30:27.915 VERB [24456] [rtc::impl::PollService::runLoop@178] Entering poll, timeout=10000ms 2023-06-23 10:30:27.916 VERB [24456] [rtc::impl::PollServ

有了电脑怎么搞?我有办法(第一部分)-涵子的个人想法

上一次会选电脑后&#xff0c;今天我们来学习一下电脑的整理方法。今天满满的都是干货&#xff0c;请仔细阅读&#xff01;注意粗体内容。 目录 一、磁盘太乱咋整&#xff1f; 1.1.磁盘是个啥&#xff1f;为啥乱&#xff1f; 1.2.分区怎么分&#xff1f; 1.3.还是分不清怎…

Java类加载机制:从字节码到对象的奇妙之旅

目录 什么是类加载机制&#xff1f; 类加载顺序 类加载顺序图 双亲委派模型 双亲委派模型示意图 如何打破双亲委派模型&#xff1f; 要想学好java&#xff0c;首先得知道它是什么&#xff0c;怎么运行的&#xff0c;怎么加载的&#xff0c;运行的是个什么东西&#xff0c…

JVM内存模型及JAVA程序运行原理

文章目录 JVM简介JVM的内存结构方法区堆栈程序计数器 JAVA程序在JVM内是如何执行的 JVM简介 JVM------Java Virtual Machine.JVM是Java平台的基础&#xff0c;与实际机器一样&#xff0c;它有自己的指令集&#xff08;类似CPU通过指令操作程序运行&#xff09;&#xff0c;并在…

Temu、shopee、Lazada、Newegg、美客多销量增长黑科技!

在跨境电商的激烈竞争环境下&#xff0c;2023年伴随着疫情的解封&#xff0c;电商业务重新焕发生机。卖家们不应该只在一个平台投放所有资源&#xff0c;而应多元化地进行平台选择。实际上&#xff0c;许多小型电商平台如Wish、敦煌等也能带来大量业务&#xff0c;而且竞争压力…

如何保证API接口的安全性

API接口的安全性是非常重要的&#xff0c;以下是一些保证API接口安全性的措施&#xff1a; 用户认证、授权&#xff1a;接口的调用者必须提供有效的身份认证信息&#xff0c;包括用户名、密码、密钥等&#xff0c;以保证接口的调用者的身份有效性。同时&#xff0c;需要在接口的…

亚马逊云科技中国峰会:Amazon DeepRacer——因构建 而可见

文章目录 一、前言二、 亚马逊云科技中国峰会大会亮点三、Amazon DeepRacer 赛事火热开启四、Amazon DeepRacer 深度体验五、2023亚马逊云科技中国峰会——Amazon DeepRacerAmazon DeepRacer 中国峰会总决赛Girls in Tech Show高校联动&#xff0c;寻找未来“生力军”Amazon De…

电赛汇总(三):常用传感器电路模块设计

电赛汇总(三)&#xff1a;常用传感器电路模块设计 这一章节主要详细记录各种常用的传感器的电子芯片型号、设计原理与思想&#xff0c;以便随时查看翻阅。这部分内容出自黄根春等学者著的《全国大学生电子设计竞赛教程》一书中&#xff0c;感兴趣的朋友可以购买翻阅。 文章目…

Debian12编译安装R软件

1.解压源码包 2.运行./configure --prefix/usr/local/R-4.3 报错&#xff0c;没有安装fortran编译器 3.运行./configure --prefix/usr/local/R-4.3 4.运行./configure --prefix/usr/local/R-4.3 5.运行./configure --prefix/usr/local/R-4.3 6.运行./configure --pref…

厦门大学计算机考研分析

关注我们的微信公众号 姚哥计算机考研 更多详情欢迎咨询 厦门大学&#xff08;B&#xff09;考研难度&#xff08;☆☆☆☆☆&#xff09; 厦门大学计算机考研主要招生学院有信息学院、人工智能研究院、医学院和电影学院。目前均已出拟录取名单。 厦门大学信息学院&#xff…

14. WebGPU 透视投影

在上一篇文章中&#xff0c;介绍了如何制作 3D &#xff0c;但 3D 没有任何透视效果。它使用的是所谓的“正交”视图&#xff0c;它有其用途&#xff0c;但通常不是人们说“3D”时想要的。 现在&#xff0c;需要添加透视图。究竟什么是透视&#xff1f;基本特征就是离得越远的…

牛客网基础语法71~80题

牛客网基础语法71~80题&#x1f618;&#x1f618;&#x1f618; &#x1f4ab;前言&#xff1a;今天是咱们第八期刷牛客网上的题目。 &#x1f4ab;目标&#xff1a;可以掌握循环嵌套&#xff0c;可以采用一些数组来解决问题&#xff0c;对循环知识掌握熟练&#xff0c;对数学…

H5套壳微信小程序跳转H5以及配置服务器接口域名和业务域名

一、H5套壳微信小程序跳转H5 基本语法&#xff1a; <web-view src"https://你的域名"></web-view> 1. 其中&#xff0c;url必须在管理后台加进业务域名&#xff0c;并且是https开头的。 使用了web-view&#xff0c;页面将不能放置其他元素&#xff0c…

【深度学习】RepVGG解析和学习体会,结构重参数化的后的速度比较,代码实现

文章目录 前言0. Vgg1.RepVGG Block 详解 前言 论文名称&#xff1a;RepVGG: Making VGG-style ConvNets Great Again 论文下载地址&#xff1a;https://arxiv.org/abs/2101.03697 官方源码&#xff08;Pytorch实现&#xff09;&#xff1a;https://github.com/DingXiaoH/RepV…

linux动态监控进程懂了没?

这里写目录标题 top交互模式监控网络状态 top top与ps类似&#xff0c;他们都是用来显示正在执行的进程。 两者最大的不同之处就是top在执行一段时间可以更新正在运行的进程。 基本语法&#xff1a; top 选项 选项功能-d 秒数指定top指令每隔几秒更新&#xff0c;默认为3秒-i…

【新星计划·2023】Linux图形、字符界面介绍与区别

作者&#xff1a;Insist-- 个人主页&#xff1a;insist--个人主页 作者会持续更新网络知识和python基础知识&#xff0c;期待你的关注 前言 本文将介绍图形界面与命令行界面以及它们的区别&#xff0c;登录方法。 目录 一、图形界面与命令行界面介绍 1、图形界面 2、命令行…

Oracle单机版升级(11.2.0.3升级到11.2.0.4)

&#x1f4e2;&#x1f4e2;&#x1f4e2;&#x1f4e3;&#x1f4e3;&#x1f4e3; 哈喽&#xff01;大家好&#xff0c;我是【IT邦德】&#xff0c;江湖人称jeames007&#xff0c;10余年DBA及大数据工作经验 一位上进心十足的【大数据领域博主】&#xff01;&#x1f61c;&am…

人工神经网络ANN

文章目录 1. 人工神经网络简介1.1 生物神经网络1.2 人工神经网络 2. 人工神经网络原理2.1 ANN的基本构造2.1.1 神经元的结构模型2.1.2 网络拓扑结构 2.2 学习规则2.3 学习算法 3. 人工神经网络特点4. 人工神经网络的Python应用5. 源码仓库地址 1. 人工神经网络简介 1.1 生物神…