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.6, <=3.9

1.9.0

0.10.0

>=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

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](https://github.com/PyAV-Org/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.

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!

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

If you're not sure about the file name format, learn more about wheel file names.

torchvision-0.11.3-cp310-cp310-manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.10

torchvision-0.11.3-cp39-cp39-win_amd64.whl (948.0 kB view details)

Uploaded CPython 3.9Windows x86-64

torchvision-0.11.3-cp39-cp39-manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.9

torchvision-0.11.3-cp39-cp39-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 3.9

torchvision-0.11.3-cp39-cp39-macosx_11_0_arm64.whl (585.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

torchvision-0.11.3-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

torchvision-0.11.3-cp38-cp38-win_amd64.whl (948.0 kB view details)

Uploaded CPython 3.8Windows x86-64

torchvision-0.11.3-cp38-cp38-manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.8

torchvision-0.11.3-cp38-cp38-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 3.8

torchvision-0.11.3-cp38-cp38-macosx_11_0_arm64.whl (636.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

torchvision-0.11.3-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

torchvision-0.11.3-cp37-cp37m-win_amd64.whl (948.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

torchvision-0.11.3-cp37-cp37m-manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.7m

torchvision-0.11.3-cp37-cp37m-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 3.7m

torchvision-0.11.3-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

torchvision-0.11.3-cp36-cp36m-win_amd64.whl (985.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

torchvision-0.11.3-cp36-cp36m-manylinux2014_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.6m

torchvision-0.11.3-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 14.7 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.11.3-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bc8a7db80c97ca254be362ba883a202192e361ba2f6dff7ff5bb010d4bfc23a
MD5 aac0b0647986d5aac459e5c643604070
BLAKE2b-256 4820380758a94be49d38798a6cfd25824f72ec1f230b00c0014efb15903777c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 948.0 kB
  • 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.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5263770a9a91011206b3566b33bbba040b92932885c63cfe5ac9c720ed1fdaca
MD5 ea2826308a72e1705d19abadf3b72213
BLAKE2b-256 8b685a976d601c11f527cb278dbd510521e3d6e192d7c5fd60471e64d1c84c25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 14.7 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.11.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25e72231be8ce03467a77806d9c3f5fd34b9cd23b9543d3e999bf57622377532
MD5 ad27a7339b0af0554f253e4b458cd34c
BLAKE2b-256 acd3913e25d7775c74f76d174a82eba45bf68e384dc78373598f6c2b3a727fed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.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.11.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eca0b0f7a0e462bdecf7926d89faae6dcd51da418ca0cf70e725981ed775a11b
MD5 cfa6afdfe5a7207e5b9497378ce95b92
BLAKE2b-256 acb19702d02e233bec7ce231cc8be94489ee31084fb6d350703f0ed22086ebed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 585.7 kB
  • 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.11.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3997b63bd8fac985323b6068e689c9617b0b36e1126616f7b380e17c501aefa
MD5 60a77acaf651f00f71aae822ba99cd74
BLAKE2b-256 4dcbd3bf0ffa1bdf83ee2fcd360f9794e48687831655cda1247eae4c7309e099

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3380211bf061d114c380f52fb33f55d2fbe483e2fd297f6aa596803f7cbdb408
MD5 4f71055206b42728520efadcd747c804
BLAKE2b-256 5933eecbba97ef527f40b25f9cbdc54ddb4f057e4150698615a518f6a75dc546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 948.0 kB
  • 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.11.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dc144114d5991a33bf8909277b02ea082d99cee4cdcf3f7a9c6b48f0c6c8ddde
MD5 ed21689e74c9ba746d248376a7a1bd31
BLAKE2b-256 f0cbb484ba727714926cbebe68687960da3481df5619280d17b1d5c90fb610bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 14.7 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.11.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b237b39e1c558ad5c9043b6e56bc568ee745f7f064f53270a3fceb53b9725c4b
MD5 1eb89153c55e51ed9b9f83286b997c57
BLAKE2b-256 e1cfd19fc48359f888607bac25d1102b72540b40316587fc572efe9fdc7642a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.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.11.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0eda00afc5176b35e69eddd018ee633e3e3d74bbcf139eccdc150781c4ae83a7
MD5 b0492d6c349b50415015cc42b590d218
BLAKE2b-256 21f40a2978512bab69a1bd2626e311a45c37b4dec100025661df70d1ede69de4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 636.3 kB
  • 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.11.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a82d7d383fabb45fb54aa569ab216b87b98f9eb9de75b3cbfedab555a71209fa
MD5 a0914ab2e0b56e6e4274ff600cd1b4fa
BLAKE2b-256 a81f3ae670bb65fa932cf7b22db62ef088a5069165844c0b186e61ecbe315c9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.11.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63647dfb9b0354bc8c5bb120f2dc15a123cee7f5fd6a8e84561da46cc2c89e3a
MD5 0d8b562718bf4c46fd2af9dff0489d89
BLAKE2b-256 00a80d59336acc849c5d6beb1d38d59b16e4a2e6ac66036ae92ba748f7f02575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 948.0 kB
  • 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.11.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7a2ea29054274aa391f4acb403c55a9bafc0df7c0395c811522a9bbb18044fa8
MD5 12db3ba5ecaf37360463f3dc84fc40bc
BLAKE2b-256 5ba9bcd41ca1f5b6c469eaec683f4cb6c3500ee06d027fbafcc25bbb89a020dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 14.7 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.11.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8cafd5fd5e583730532b40587149d39f9e496023019f1cd86b083e3ca219e6d
MD5 b166bdae4f4959a6d2aac361d95772e5
BLAKE2b-256 0cbcab111dc57326a2b39bcde1ffe9dc839e97fa43a509169ac566c1507f36e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.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.11.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 253e389529df26d39a934512b57bd3fafd7a2a79c3bcad70d3dacab64de95d17
MD5 3e64d77f315aef2f5db4c5f1065c0c1c
BLAKE2b-256 5811d8b150c7990f04be7dd379bc003b6cc6f7adb19d296ea2203280dddce2aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: torchvision-0.11.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.11.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6137eb2694688adf863134dc04336159b3326c30a5de66bb773634ea10ef837e
MD5 8a927d4ae3e7edffb70c09ee7029b575
BLAKE2b-256 a19258042cccfd34f4724dddb2b78ae1a4211b2dfaec8a7835e19892a022a193

See more details on using hashes here.

File details

Details for the file torchvision-0.11.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: torchvision-0.11.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 985.1 kB
  • Tags: CPython 3.6m, 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.11.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 870496b022c49f1c200ac26881481e8c3916360fe86185ae86b950a7ecbef7dc
MD5 cf38bba456884fdce1a4cb1758cab575
BLAKE2b-256 3df1406aaf7a71f0c49b9ca5ea331fdc5c81b8339e6a47ad0aa12848caaf938a

See more details on using hashes here.

File details

Details for the file torchvision-0.11.3-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchvision-0.11.3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.6m
  • 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.11.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abb8ace93194a1bc93a6fc5609d6e9518451c5c82b559abfdc77b758014276d1
MD5 668705338a27d2d3b388daaf37a0f614
BLAKE2b-256 2264576d451549741f19120a77a7482a5f26f44b140eeefe9221621c2d01ad61

See more details on using hashes here.

File details

Details for the file torchvision-0.11.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: torchvision-0.11.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, 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.11.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55c226803d0ab17972e3f61054ba5d931ca005846c34ec0ae219c17289600813
MD5 3fbe5b495d261debef9e678e06b486a9
BLAKE2b-256 b1ef7483ea4a998cb29ffd791f720fff17e493a75a7d71aa9661cf049b146e54

See more details on using hashes here.

Supported by

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