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.1-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10

torchvision-0.14.1-cp310-cp310-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9

torchvision-0.14.1-cp39-cp39-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

torchvision-0.14.1-cp38-cp38-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.8

torchvision-0.14.1-cp38-cp38-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7m

torchvision-0.14.1-cp37-cp37m-manylinux1_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13986f0c15377ff23039e1401012ccb6ecf71024ce53def27139e4eac5a57592
MD5 3ae87f6b900ba162b13ee8400e75e22b
BLAKE2b-256 b8e0edf3d41324c27f246abe1a4942227c6abe44fb2e62d35807178acb1355ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a9eb773a2fa8f516e404ac09c059fb14e6882c48fdbb9c946327d2ce5dba6cd
MD5 695106addc1f5ea60a0bd486c972dbaa
BLAKE2b-256 691e63daba0cf15c71d39dee43d98045d4b483b7d7b07ba2a35d7a3e71a7b151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 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.1-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d7b35653113664ea3fdcb71f515cfbf29d2fe393000fd8aaff27a1284de6908
MD5 b3919298ac26d272e3e43447b548d061
BLAKE2b-256 cdd466de471d47a293dd52c254deff0081d7c9b8d1304b911bb3cffaa1fa956b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d0766ea92affa7af248e327dd85f7c9cfdf51a57530b43212d4e1858548e9d7
MD5 a42440a915b95f845bd05d8fab5422a2
BLAKE2b-256 b946065c71441c0bfb34914569f3728c4ecaa0364e65ed2f3adba98d84be568e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eeb05dd9dd3af5428fee525400759daf8da8e4caec45ddd6908cfb36571f6433
MD5 77c0b4f1b830f2ca0c5fdae3a2007495
BLAKE2b-256 047e4eaf3fff579af12c5d02514fd613826b939c24f5a9d2c8962c7e23560382

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b337e1245ca4353623dd563c03cd8f020c2496a7c5d12bba4d2e381999c766e0
MD5 10887f24341493c51ef3f7d9ba3a4b31
BLAKE2b-256 49b0c004291db040fa5a29877630934564ad1f9107b6f85356dea89aeae8975c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaed58cf454323ed9222d4e0dd5fb897064f454b400696e03a5200e65d3a1e76
MD5 18e2db2955128547bc3682d9bfed7e73
BLAKE2b-256 c1047babdd446fb62b7bc8f9cc1d8a50e759ac502c077ff882d3c3aa4897566e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 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.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 83045507ef8d3c015d4df6be79491375b2f901352cfca6e72b4723e9c4f9a55d
MD5 1d2c683e25e0bb823f9a6b1326551c08
BLAKE2b-256 8eb68e910a505014ecdbfceb66610a55722b649663c604f8ff0fd25f74dc84f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 758b20d079e810b4740bd60d1eb16e49da830e3360f9be379eb177ee221fa5d4
MD5 1fc60898d5ed84eac2a7983a70efc6f6
BLAKE2b-256 c1b0f238bcbbd99a044ce6b8f6e592ee47e0cdf3dfa155c127460a45a2586cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e744f56e5f5b452deb5fc0f3f2ba4d2f00612d14d8da0dbefea8f09ac7690b
MD5 378706ee0d5f5f1b16b7f757e7b19084
BLAKE2b-256 5d98dd18891b11265ccc8a0c4450ce47aa3aafffd08b33037f085224a3ceea99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6099b3191dc2516099a32ae38a5fb349b42e863872a13545ab1a524b6567be60
MD5 d958035ebbaefc475792c18e6acc615f
BLAKE2b-256 3ae6b631892eca70acccd4b86b1dcee4fd23347293e6a231de72af3eb464b1a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a541e49fc3c4e90e49e6988428ab047415ed52ea97d0c0bfd147d8bacb8f4df8
MD5 cd4a971238ea52f52cbfd104901531ba
BLAKE2b-256 7c22ed84a5fe71a79c2942a726dfce28b1b258f92bf7b70ccdd72ff9d4c1b074

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 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.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ed02aefd09bf1114d35f1aa7dce55aa61c2c7e57f9aa02dce362860be654e85
MD5 b01a886681ed5659243ec1114c798a36
BLAKE2b-256 7cd8353b695fc47b9e2210313874fedd76b7ea5e699f2b2dd674919a95c4a0f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30fcf0e9fe57d4ac4ce6426659a57dce199637ccb6c70be1128670f177692624
MD5 c8448b02e307b5cde597812b11b169ce
BLAKE2b-256 a51ace8d3be43d1ff77dd39121e74691a14dcebb96224e5b080d83d48c888e78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68ed03359dcd3da9cd21b8ab94da21158df8a6a0c5bad0bf4a42f0e448d28cb3
MD5 4390118193805edfbb613fd13345c963
BLAKE2b-256 49565bc1fcdf3a0974d662aa6a23b72307de3e5b0bb008e70a99e091728c7050

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 92a324712a87957443cc34223274298ae9496853f115c252f8fc02b931f2340e
MD5 7172dfdf8885dd3f3f25f97c10f19690
BLAKE2b-256 77ecccdfcafb958f6007cc357ce12fd945551a71503b88cd3f78e49fd958f949

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2d4237d3c9705d7729eb4534e4eb06f1d6be7ff1df391204dfb51586d9b0ecb
MD5 6b12410993a70b74c35bf0d7489b41d4
BLAKE2b-256 56928d86f5a6320f66080b82543a377ad39bc0a6973544bd78d92c07dcc4658b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.2 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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 89fb0419780ec9a9eb9f7856a0149f6ac9f956b28f44b0c0080c6b5b48044db7
MD5 ccdf23fe65a63ad39ea44647c0029c1d
BLAKE2b-256 8a88e83d51deb96de0847884fddb82ac0958fdc06f814c846878489aa5857a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.14.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb7a793fd33ce1abec24b42778419a3fb1e3159d7dfcb274a3ca8fb8cbc408dc
MD5 c220bf4b7a6f3edee708554b5616c912
BLAKE2b-256 f3f8c4601983a1ccb75588e77de2fd3932170cc24bdf5839565af839e9fa9729

See more details on using hashes here.

Supported by

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