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

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

Uploaded CPython 3.10 Windows x86-64

torchvision-0.13.1-cp310-cp310-manylinux1_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.10

torchvision-0.13.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

torchvision-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

torchvision-0.13.1-cp39-cp39-manylinux1_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.9

torchvision-0.13.1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

torchvision-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

torchvision-0.13.1-cp38-cp38-manylinux1_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.8

torchvision-0.13.1-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

torchvision-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

torchvision-0.13.1-cp37-cp37m-manylinux1_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.7m

torchvision-0.13.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: torchvision-0.13.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.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e4d02e4d8a203e0c09c10dfb478214c224d080d31efc0dbf36d9c4051f7f3c6
MD5 0423f223f359686871fa5571df6ea9c3
BLAKE2b-256 3cf89c26cc89e9dcb0290a85d5586b7a4a068db32bc974a8c4f2bf2840ddf849

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 701.7 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.13.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 099874088df104d54d8008f2a28539ca0117b512daed8bf3c2bbfa2b7ccb187a
MD5 5c95579a72d785fc13074de207ecc83e
BLAKE2b-256 a24f8d1a90666f9b07a2857d00521a8303a5b13b9611dff6abd00ec2acc0b310

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.1 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.13.1-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef5fe3ec1848123cd0ec74c07658192b3147dcd38e507308c790d5943e87b88c
MD5 c36ed7518eff220f978a25835af6f71c
BLAKE2b-256 03bb8d6aade7c39bbc55a75054fcbd6c3292f080d05c7d9cff092f2813a65c10

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 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.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08f592ea61836ebeceb5c97f4d7a813b9d7dc651bbf7ce4401563ccfae6a21fc
MD5 05389782f9fd0f0bc52df8846840b9c1
BLAKE2b-256 7dc39a60f71af06fd2364fb08be73645864d4caef715b8c9246d16386c7cec31

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 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.13.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19286a733c69dcbd417b86793df807bd227db5786ed787c17297741a9b0d0fc7
MD5 b9060771e5f052031638394bedca2f74
BLAKE2b-256 1356dc16069475d3fc7dac1feca33c61a3155ea0674c39f27ff4b0e3651c2c5d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.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.13.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e77706cc90462653620e336bb90daf03d7bf1b88c3a9a3037df8d111823a56e
MD5 0a76a7dd7881eec8b1b91f5cb3978663
BLAKE2b-256 ff33f8e838088c0de6a162288c2cbde225b6d98f01de552a42160dd9012f9507

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 701.7 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.13.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b167934a5943242da7b1e59318f911d2d253feeca0d13ad5d832b58eed943401
MD5 d4a87fa64d8fa19bcaba190246f86022
BLAKE2b-256 b1806230a7f1a5e078595f1a7e2bdf02bd1ede631f8bdc8dbc6d4e9fece6e8ca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.1 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.13.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3567fb3def829229ec217c1e38f08c5128ff7fb65854cac17ebac358ff7aa309
MD5 cc4864a43bda5cd27e4139d87d7e28fc
BLAKE2b-256 ed44ab2f3a6670a054c5ec0e7c295f437d043a4be46f07ff2d9fce73cadb7549

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 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.13.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5ed609c8bc88c575226400b2232e0309094477c82af38952e0373edef0003fd
MD5 a2cf6c1278bdf40f6765a81729bcbcc4
BLAKE2b-256 c801d0a22281ca082721b4672b7f27d52243fc81fd2a10d7bc218b4b0f6c5feb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 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.13.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0298bae3b09ac361866088434008d82b99d6458fe8888c8df90720ef4b347d44
MD5 b0507de995c2a88d4a9eddb19ce406df
BLAKE2b-256 f32bccfaea92b4fc8773ff1102991042b58c058c5f2053d44c17125604a074f9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.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.13.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d8bf321c4380854ef04613935fdd415dce29d1088a7ff99e06e113f0efe9203
MD5 2cd393a372af08cc377765ad5a218129
BLAKE2b-256 4877736239716ceb9ed1d8bfb923d9bb9e6dfe6e5addd8bac80943981efde09e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 701.7 kB
  • 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.13.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87c137f343197769a51333076e66bfcd576301d2cd8614b06657187c71b06c4f
MD5 6a90052e936835d05741c6f722fa17e6
BLAKE2b-256 52fb0079b1398cdb7db33cd8901e72e39975a572b9a17efac915742f6fe20f7e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.1 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.13.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7cb789ceefe6dcd0dc8eeda37bfc45efb7cf34770eac9533861d51ca508eb5b3
MD5 c712c6633c5e98b552d104ab955feadb
BLAKE2b-256 30783408ba9bbba1fb1e58d31cd8166ec862f9b3f99a09fa7fa521e6583292ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 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.13.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9a563894f9fa40692e24d1aa58c3ef040450017cfed3598ff9637f404f3fe3b
MD5 ae67f3d1590cb18f2eb960123b8ab13a
BLAKE2b-256 a9814719c1ca9c216b1b39dcbac6f9656e6554544957b9e89d259ac92d895b4b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 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.13.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f230a1a40ed70d51e463ce43df243ec520902f8725de2502e485efc5eea9d864
MD5 26a10ca660620bcb43efde65e6b274e4
BLAKE2b-256 c8e87d686bdfbed1a180034e1c06cc68a318728380dc506e0cce0f1ec0716f6f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.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.13.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7552e80fa222252b8b217a951c85e172a710ea4cad0ae0c06fbb67addece7871
MD5 ceb592df32f662831c581956b534615d
BLAKE2b-256 7b2a4ef01892669f4d671bf3eea9545ead096e858eb184f0e201b06549b0ae1f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.4 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.13.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83e9e2457f23110fd53b0177e1bc621518d6ea2108f570e853b768ce36b7c679
MD5 2d93405a64a885c967de0f032d65ff98
BLAKE2b-256 7833cf68192b083923548eae213d20e94fb90472358dcf041e7bd7259b8fd8d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.1 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.13.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 899eec0b9f3b99b96d6f85b9aa58c002db41c672437677b553015b9135b3be7e
MD5 b4fb255fe670b0ee1c89c2ee732438e9
BLAKE2b-256 b332afee55c60af3d4229e445eda9b8f77bc7fb3fb1efac3fab73cfcab671023

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: torchvision-0.13.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 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.13.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e631241bee3661de64f83616656224af2e3512eb2580da7c08e08b8c965a8ac
MD5 b6a7d7e30423583f568bf8fe5d0758db
BLAKE2b-256 bc9afb4a44091131a310aa5add72686bf87c424a15356748981ba61467badb86

See more details on using hashes here.

Provenance

Supported by

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