Skip to main content

image and video datasets and models for torch deep learning

Project description

torchvision

https://pepy.tech/badge/torchvision https://img.shields.io/badge/dynamic/json.svg?label=docs&url=https%3A%2F%2Fpypi.org%2Fpypi%2Ftorchvision%2Fjson&query=%24.info.version&colorB=brightgreen&prefix=v

The torchvision package consists of popular datasets, model architectures, and common image transformations for computer vision.

Installation

We recommend Anaconda as Python package management system. Please refer to pytorch.org for the detail of PyTorch (torch) installation. The following is the corresponding torchvision versions and supported Python versions.

torch

torchvision

python

main / nightly

main / nightly

>=3.7, <=3.10

1.12.0

0.13.0

>=3.7, <=3.10

1.11.0

0.12.0

>=3.7, <=3.10

1.10.2

0.11.3

>=3.6, <=3.9

1.10.1

0.11.2

>=3.6, <=3.9

1.10.0

0.11.1

>=3.6, <=3.9

1.9.1

0.10.1

>=3.6, <=3.9

1.9.0

0.10.0

>=3.6, <=3.9

1.8.2

0.9.2

>=3.6, <=3.9

1.8.1

0.9.1

>=3.6, <=3.9

1.8.0

0.9.0

>=3.6, <=3.9

1.7.1

0.8.2

>=3.6, <=3.9

1.7.0

0.8.1

>=3.6, <=3.8

1.7.0

0.8.0

>=3.6, <=3.8

1.6.0

0.7.0

>=3.6, <=3.8

1.5.1

0.6.1

>=3.5, <=3.8

1.5.0

0.6.0

>=3.5, <=3.8

1.4.0

0.5.0

==2.7, >=3.5, <=3.8

1.3.1

0.4.2

==2.7, >=3.5, <=3.7

1.3.0

0.4.1

==2.7, >=3.5, <=3.7

1.2.0

0.4.0

==2.7, >=3.5, <=3.7

1.1.0

0.3.0

==2.7, >=3.5, <=3.7

<=1.0.1

0.2.2

==2.7, >=3.5, <=3.7

Anaconda:

conda install torchvision -c pytorch

pip:

pip install torchvision

From source:

python setup.py install
# or, for OSX
# MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install

We don’t officially support building from source using pip, but if you do, you’ll need to use the --no-build-isolation flag. In case building TorchVision from source fails, install the nightly version of PyTorch following the linked guide on the contributing page and retry the install.

By default, GPU support is built if CUDA is found and torch.cuda.is_available() is true. It’s possible to force building GPU support by setting FORCE_CUDA=1 environment variable, which is useful when building a docker image.

Image Backend

Torchvision currently supports the following image backends:

  • Pillow (default)

  • Pillow-SIMD - a much faster drop-in replacement for Pillow with SIMD. If installed will be used as the default.

  • accimage - if installed can be activated by calling torchvision.set_image_backend('accimage')

  • libpng - can be installed via conda conda install libpng or any of the package managers for debian-based and RHEL-based Linux distributions.

  • libjpeg - can be installed via conda conda install jpeg or any of the package managers for debian-based and RHEL-based Linux distributions. libjpeg-turbo can be used as well.

Notes: libpng and libjpeg must be available at compilation time in order to be available. Make sure that it is available on the standard library locations, otherwise, add the include and library paths in the environment variables TORCHVISION_INCLUDE and TORCHVISION_LIBRARY, respectively.

Video Backend

Torchvision currently supports the following video backends:

  • pyav (default) - Pythonic binding for ffmpeg libraries.

  • video_reader - This needs ffmpeg to be installed and torchvision to be built from source. There shouldn’t be any conflicting version of ffmpeg installed. Currently, this is only supported on Linux.

conda install -c conda-forge ffmpeg
python setup.py install

Using the models on C++

TorchVision provides an example project for how to use the models on C++ using JIT Script.

Installation From source:

mkdir build
cd build
# Add -DWITH_CUDA=on support for the CUDA if needed
cmake ..
make
make install

Once installed, the library can be accessed in cmake (after properly configuring CMAKE_PREFIX_PATH) via the TorchVision::TorchVision target:

find_package(TorchVision REQUIRED)
target_link_libraries(my-target PUBLIC TorchVision::TorchVision)

The TorchVision package will also automatically look for the Torch package and add it as a dependency to my-target, so make sure that it is also available to cmake via the CMAKE_PREFIX_PATH.

For an example setup, take a look at examples/cpp/hello_world.

Python linking is disabled by default when compiling TorchVision with CMake, this allows you to run models without any Python dependency. In some special cases where TorchVision’s operators are used from Python code, you may need to link to Python. This can be done by passing -DUSE_PYTHON=on to CMake.

TorchVision Operators

In order to get the torchvision operators registered with torch (eg. for the JIT), all you need to do is to ensure that you #include <torchvision/vision.h> in your project.

Documentation

You can find the API documentation on the pytorch website: https://pytorch.org/vision/stable/index.html

Contributing

See the CONTRIBUTING file for how to help out.

Disclaimer on Datasets

This is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset’s license.

If you’re a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!

Pre-trained Model License

The pre-trained models provided in this library may have their own licenses or terms and conditions derived from the dataset used for training. It is your responsibility to determine whether you have permission to use the models for your use case.

More specifically, SWAG models are released under the CC-BY-NC 4.0 license. See SWAG LICENSE for additional details.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

torchvision-0.14.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

torchvision-0.14.0-cp310-cp310-manylinux2014_aarch64.whl (760.3 kB view details)

Uploaded CPython 3.10

torchvision-0.14.0-cp310-cp310-manylinux1_x86_64.whl (24.3 MB view details)

Uploaded CPython 3.10

torchvision-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

torchvision-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

torchvision-0.14.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

torchvision-0.14.0-cp39-cp39-manylinux2014_aarch64.whl (760.3 kB view details)

Uploaded CPython 3.9

torchvision-0.14.0-cp39-cp39-manylinux1_x86_64.whl (24.3 MB view details)

Uploaded CPython 3.9

torchvision-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

torchvision-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

torchvision-0.14.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

torchvision-0.14.0-cp38-cp38-manylinux1_x86_64.whl (24.3 MB view details)

Uploaded CPython 3.8

torchvision-0.14.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

torchvision-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

torchvision-0.14.0-cp37-cp37m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

torchvision-0.14.0-cp37-cp37m-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.7m

torchvision-0.14.0-cp37-cp37m-manylinux1_x86_64.whl (24.3 MB view details)

Uploaded CPython 3.7m

torchvision-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file torchvision-0.14.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8c5c26d92e7a5527c5ed31827cf6fff75aa3011cf9f818a5b0f7283fa68162c
MD5 a31b84a08e2cb50b7f927c1d2906d43f
BLAKE2b-256 e00306b2ba8447e1e584f1a5364dd16a25becd2392bd447b23ec8f728446dd25

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 760.3 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a4516afcf8d2fc6575f8358638b3972e2b655eec59988abcfbbd1d8410b74d5
MD5 dfc77e8bee642052dcbbdb4ed59d1bff
BLAKE2b-256 6413d749f3fd018358aba66501d997795eebfce53425a0f5f424ab2640340455

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp310-cp310-manylinux1_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7dbb54b47edfc08f51df3fb8c66a917b07897d9e3f2fa739aa9ccb36a38fe1bc
MD5 a602f7cbe6145345148c32d31f877ebb
BLAKE2b-256 c888ab26f5fa8f093ebae221d516f626e77852ae006de71bfd907900c22f80ec

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1db57014a6946e8633e1f2863aaea47d5b3e7424f94136ab5d50861a6db35698
MD5 a887734c483733d1b788c28c4755a7dd
BLAKE2b-256 cda708f0aee45e1d451a4d44e327f4b5f3b5c5767952c03a618f88253f962410

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b6e1706760eace0257ebb0677404cdd64f4cf88804bc6379f694cf3ed470591
MD5 018eca52903a97538e38b7008e907fcf
BLAKE2b-256 85582d9262592df0e4e86a32b675ad215a42e1904320e2418c475b2c0900497e

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c0b8aa6f9a1c8372ee59fd31bf366745096b777cd75352a4c587781b08d72e5
MD5 758ff1f99c6d55b42e362e9e08493c77
BLAKE2b-256 a7f3aaac29c2cdb84b0be1302aa17a68a7c39b05d9bca810d144e42c7131fb0d

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 760.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6b9f137c2d4954b1abce706ac1e56f98b73516e8fe35b62a8819bfc1226079b
MD5 99c99b271af50207f0def5440395f4f9
BLAKE2b-256 32c6afeb252ea419f8cd4431d08b0349e273de1f7226a6dd3551c46f5a73d36a

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0758632e15bd24c88daaf5fee66cf56d08318e7f561e416e26f5b90a1f61aa3a
MD5 7d7f270e47da54071be2be67262a04b1
BLAKE2b-256 deaddbaac67d7effa79a9bc6eb48d22daa5e4da33ceeab8efe4f10f587e5f3f4

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c477dbb8ff6d0e1c7847aa94b55347076c664863aed69e8b79335cb12674c1b
MD5 8f3f2be3ce82af0751cd3074108dda8d
BLAKE2b-256 daed52ed23cfe130c9da70032d2613050fbddc0aa16cbd4a2a4f20e829881d90

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a6aa72804cff9550cbb890f98c7e9ff26acdfc48064d1129faf1bbfeaf60a0a
MD5 ede48b593cce6704f651faa60b79b276
BLAKE2b-256 53970454fa1cff904f64fcd156468b8549016af8b69ad5050247ae887f2c02bb

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 281071e140bcfe0b564935ed26198001dab86b72b3eaea32939a1b63af181be1
MD5 2b4b7c6630925189721d310bb0d927b2
BLAKE2b-256 f42d8558e62f0226ef832e47f97b3beecdb40c98d1ddc9f5e2200d8b0b2cc587

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8857eb11aee31f106b0fa35cfbe0a82a5af0c267fdd74b9d1a46bc1ff71ccdaf
MD5 91abfa6c8268233e6487f2b88adf03f0
BLAKE2b-256 d0b1d15d826b6d1b9b953ae5b4527a66049dc2a272d7e4f67504f40df711d4af

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 897832c3be99d74afeb2705a2eb8a8147c4b0f4ab6a19ed304743b85bd5e7008
MD5 d0c9398a674f46ceae8b4d930269963a
BLAKE2b-256 ce8a7ba6d87bf3b817d185cc99cccbeb3ca7f5399341c39fa453d882abc2aa55

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68110418c833a10153e382b0394598dd169ab823a2168139c7b4f62ea48a4446
MD5 078fc4635f6b0e0ead0dc8e11683b35a
BLAKE2b-256 1764b1e3826b4b51ed7d8beb2b5d4a9f8b51f6dff1b520bd88871607733bde35

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0123d0280c547aa9766954928b1ab9af2125a8861f53af23c07e56aeef0f2520
MD5 6ab14ac2aece5e981721fa415b9b077d
BLAKE2b-256 ce7174f87553252e5d6bcd376e332156299537f49d96c0eb029999ee2b858eb5

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbf76d89624efa7d96bd6425d24dcce605976326dc2837c2f0529b49bf206bf2
MD5 aa1ebe29843e33718d989737820adaab
BLAKE2b-256 b2bfd1bf638626016313db0658394b10bc986352edb10464ec8e20810cbe28f8

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9572ae1680664850df0146fe3975b17902ac429d817651f030d2bacf3f467bdd
MD5 6bf2367290ba80973d232ecf76d3f516
BLAKE2b-256 55d344b02b8fda63e765efff390e1f77417de7873f619ef25f22e64ea78074dd

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3b283a3811c4d777295583426ceb29320c2bd2d6a38e68c5f7ff3220c0560c7c
MD5 6285656b0ff7fa19d60f75e6975b5098
BLAKE2b-256 1c48a7eeac0cd558d1d830f555eb155f75690d60277d93401de5dc3c40b42d52

See more details on using hashes here.

File details

Details for the file torchvision-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: torchvision-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for torchvision-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6b41df5e4daf6ee21b61ae5a77abcce7bf7d0f7596c920ba4919fe7b7727f20
MD5 f12c8d3a1f5374dd13c88e70bd7a14f0
BLAKE2b-256 11e29e7a92510044f82e26d382361b14377b61ca570266e53ae7c37f8ca3631c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page