Skip to main content

torchvision

total torchvision downloads documentation

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

Installation

Please refer to the official instructions to install the stable versions of torch and torchvision on your system.

To build source, refer to our contributing page.

The following is the corresponding torchvision versions and supported Python versions.

torch torchvision Python
main / nightly main / nightly >=3.8, <=3.11
2.1 0.16 >=3.8, <=3.11
2.0 0.15 >=3.8, <=3.11
1.13 0.14 >=3.7.2, <=3.10
older versions
torch torchvision Python
1.12 0.13 >=3.7, <=3.10
1.11 0.12 >=3.7, <=3.10
1.10 0.11 >=3.6, <=3.9
1.9 0.10 >=3.6, <=3.9
1.8 0.9 >=3.6, <=3.9
1.7 0.8 >=3.6, <=3.9
1.6 0.7 >=3.6, <=3.8
1.5 0.6 >=3.5, <=3.8
1.4 0.5 ==2.7, >=3.5, <=3.8
1.3 0.4.2 / 0.4.3 ==2.7, >=3.5, <=3.7
1.2 0.4.1 ==2.7, >=3.5, <=3.7
1.1 0.3 ==2.7, >=3.5, <=3.7
<=1.0 0.2 ==2.7, >=3.5, <=3.7

Image Backends

Torchvision currently supports the following image backends:

  • torch tensors
  • PIL images:

Read more in in our docs.

[UNSTABLE] 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<4.3'
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.

Citing TorchVision

If you find TorchVision useful in your work, please consider citing the following BibTeX entry:

@software{torchvision2016,
    title        = {TorchVision: PyTorch's Computer Vision library},
    author       = {TorchVision maintainers and contributors},
    year         = 2016,
    journal      = {GitHub repository},
    publisher    = {GitHub},
    howpublished = {\url{https://github.com/pytorch/vision}}
}

Release files for torchvision 0.17.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for torchvision 0.17.0
File
torchvision-0.17.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
torchvision-0.17.0-cp312-cp312-manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
torchvision-0.17.0-cp312-cp312-manylinux1_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64 Details
torchvision-0.17.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
torchvision-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
torchvision-0.17.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
torchvision-0.17.0-cp311-cp311-manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
torchvision-0.17.0-cp311-cp311-manylinux1_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64 Details
torchvision-0.17.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
torchvision-0.17.0-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
torchvision-0.17.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
torchvision-0.17.0-cp310-cp310-manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
torchvision-0.17.0-cp310-cp310-manylinux1_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64 Details
torchvision-0.17.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
torchvision-0.17.0-cp310-cp310-macosx_10_13_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.13+ x86-64 Details
torchvision-0.17.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
torchvision-0.17.0-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
torchvision-0.17.0-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
torchvision-0.17.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
torchvision-0.17.0-cp39-cp39-macosx_10_13_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.13+ x86-64 Details
torchvision-0.17.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
torchvision-0.17.0-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
torchvision-0.17.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
torchvision-0.17.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
torchvision-0.17.0-cp38-cp38-macosx_10_13_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.13+ x86-64 Details

Total release size:114.3 MB

Release files / torchvision-0.17.0-cp312-cp312-win_amd64.whl

Download URL torchvision-0.17.0-cp312-cp312-win_amd64.whl
Size 1.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b755d6d3e021239d2408bf3794d0d3dcffbc629f1fd808c43d8b346045a098c4
BLAKE2b-256 checksum
How to use checksums
bea6ed6d3413761b1d3ff572d8436601e0854471ff67c0c986064ad01bcba303
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp312-cp312-manylinux2014_aarch64.whl

Download URL torchvision-0.17.0-cp312-cp312-manylinux2014_aarch64.whl
Size 14.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4608ba3246c45c968ede40e7640e4eed64556210faa154cf1ffccb1cadabe445
BLAKE2b-256 checksum
How to use checksums
f687ed1fb27b3b22b77587c518441a19a2812d153af4e4dadf8d9f74cc21e645
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp312-cp312-manylinux1_x86_64.whl

Download URL torchvision-0.17.0-cp312-cp312-manylinux1_x86_64.whl
Size 6.9 MB
Tags CPython 3.12 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8fe14d580557aef2c45dd462c069ff936b6507b215c4b496f30973ae8cff917d
BLAKE2b-256 checksum
How to use checksums
3a20c57ef160aa7477478544f05b9ef949625166b49e35f06e987eeb8b0882d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL torchvision-0.17.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
be39874c239215a39b3c431c7016501f1a45bfbbebf2fe8e11d8339b5ea23bca
BLAKE2b-256 checksum
How to use checksums
a816b208d6704061438b80f63937c6a00a70c5e91062bbb281e106e007ecd41b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL torchvision-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
816ae1a4506b1cb0f638e1827cae7ab768c731369ab23e86839f177926197143
BLAKE2b-256 checksum
How to use checksums
8a27c7860ad0973f6f555bc5e03fbc9e001f79816ff503321b34941ee60fe44c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp311-cp311-win_amd64.whl

Download URL torchvision-0.17.0-cp311-cp311-win_amd64.whl
Size 1.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f8e542cf71e1294fcb5635038eae6702df543dc90706f0836ec80e75efc511fc
BLAKE2b-256 checksum
How to use checksums
b55638e892200f8638032b64f6fc8660049f0d00ccba086cf1dcb884bd6370d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp311-cp311-manylinux2014_aarch64.whl

Download URL torchvision-0.17.0-cp311-cp311-manylinux2014_aarch64.whl
Size 14.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3d2e9552d72e4037f2db6f7d97989a2e2f95763aa1861963a3faf521bb1610c4
BLAKE2b-256 checksum
How to use checksums
5f964300bd970f7de2e5dbf0fe1a78baa8670ea3f09cadca51b05e1dfc346fe3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp311-cp311-manylinux1_x86_64.whl

Download URL torchvision-0.17.0-cp311-cp311-manylinux1_x86_64.whl
Size 6.9 MB
Tags CPython 3.11 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
acc0d098ab8c295a750f0218bf5bf7bfc2f2c21f9c2fe3fc30b695cd94f4c759
BLAKE2b-256 checksum
How to use checksums
c76a5a3e396a4ac5d869acf9bb0db9c301c4780af1b68fdb5883d61d63e595b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL torchvision-0.17.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a3eef2daddadb5c21e802e0550dd7e3ee3d98c430f4aed212ae3ba0358558be1
BLAKE2b-256 checksum
How to use checksums
3e4fad5c2a7d2783649c8ea691441a9f285accae922a1625e21603c45e3ddff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp311-cp311-macosx_10_13_x86_64.whl

Download URL torchvision-0.17.0-cp311-cp311-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
10d276821f115fb369e6cf1f1b77b2cca60cda12cbb39a41513a9d3d0f2a93ae
BLAKE2b-256 checksum
How to use checksums
3281f81f5c6ecb0ef29affb69d2e615e20b531420ba866dd7cd504f9dc766d8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp310-cp310-win_amd64.whl

Download URL torchvision-0.17.0-cp310-cp310-win_amd64.whl
Size 1.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
71b314813faf13cecb09a4a635b5e4b274e8df0b1921681038d491c529555bb6
BLAKE2b-256 checksum
How to use checksums
7fc910ca7837d786f2a96328ddf3a93767897d5e6eb04cf42b043778a771d04a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp310-cp310-manylinux2014_aarch64.whl

Download URL torchvision-0.17.0-cp310-cp310-manylinux2014_aarch64.whl
Size 14.0 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3d86c212fc6379e9bec3ac647d062e34c2cf36c26b98840b66573eb9fbe1f1d9
BLAKE2b-256 checksum
How to use checksums
4ffdc02da47623d870a53007f4628f69787cbe62a50fcedc3327d03d5951ae5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp310-cp310-manylinux1_x86_64.whl

Download URL torchvision-0.17.0-cp310-cp310-manylinux1_x86_64.whl
Size 6.9 MB
Tags CPython 3.10 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
605950cdcefe6c5aef85709ade17b1525bcf171e122cce1df09e666d96525b90
BLAKE2b-256 checksum
How to use checksums
d85155393d57c2d95311b1675c8cd37d307f5022460cf98746e4df882dfb415c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL torchvision-0.17.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c55c2f86e3f3a21ddd92739a972366244e9b17916e836ec47167b0a0c083c65f
BLAKE2b-256 checksum
How to use checksums
95f55f3f013ddb3eb8561d3313fd5a5951e5883aff4aba8398ad93d1b183a214
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp310-cp310-macosx_10_13_x86_64.whl

Download URL torchvision-0.17.0-cp310-cp310-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
153882cd8ff8e3dbef5c5054fdd15df64e85420546805a90c0b2221f2f119c4a
BLAKE2b-256 checksum
How to use checksums
99dadedf05fab34a0ef38abc20b8a86b836a486fdef774641812fe556db8ef5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp39-cp39-win_amd64.whl

Download URL torchvision-0.17.0-cp39-cp39-win_amd64.whl
Size 1.2 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4c0d4c0af58af2752aad235150bd794d0f324e6eeac5cd13c440bda5dce622d3
BLAKE2b-256 checksum
How to use checksums
c2b27dd581240fec0d17fb2865592a84b101e723b48a3f36ff8184aa6ba38300
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp39-cp39-manylinux2014_aarch64.whl

Download URL torchvision-0.17.0-cp39-cp39-manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
085251ab36340206dc7e1be59a15fa5e307d45ccd66889f5d7bf1ba5e7ecdc57
BLAKE2b-256 checksum
How to use checksums
14284f9d5ab0646636dac54db3e76445bbcb02c5944b00c796587170d04bc0d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp39-cp39-manylinux1_x86_64.whl

Download URL torchvision-0.17.0-cp39-cp39-manylinux1_x86_64.whl
Size 6.9 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7f373507afcd9022ebd9f50b31da8dbac1ea6783ffb77d1f1ab8806425c0a83b
BLAKE2b-256 checksum
How to use checksums
4bbbb3e917f46610854a444bf08e6fd0fa95dd22bbfcab092e83785638daf57a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL torchvision-0.17.0-cp39-cp39-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b53569c52bd4bd1176a1e49d8ea55883bcf57e1614cb97e2e8ce372768299b70
BLAKE2b-256 checksum
How to use checksums
455f9aa70444832c5285a7ab6f2e916733a525a99e3a58e9e2f8d628287cc88b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp39-cp39-macosx_10_13_x86_64.whl

Download URL torchvision-0.17.0-cp39-cp39-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.9 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b1ced438b81ef662a71c8c81debaf0c80455b35b811ca55a4c3c593d721b560a
BLAKE2b-256 checksum
How to use checksums
810b051a8a7ed261cb11f01ec6f66975f467bc8a56c5f355d1bf03546daa455e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp38-cp38-win_amd64.whl

Download URL torchvision-0.17.0-cp38-cp38-win_amd64.whl
Size 1.2 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7887f767670c72aa20f5237042d0ca1462da18f66a3ea8c36b6ba67ce26b82fc
BLAKE2b-256 checksum
How to use checksums
d208c438a422459d0d8ffd111590c3f49cc8eced15900412cb9449ec13d929be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp38-cp38-manylinux2014_aarch64.whl

Download URL torchvision-0.17.0-cp38-cp38-manylinux2014_aarch64.whl
Size 14.0 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e041ce3336364413bab051a3966d884bab25c200f98ca8a065f0abe758c3005e
BLAKE2b-256 checksum
How to use checksums
c79224eb045ffc23a1c6a03b6ceaaddad56b193d19c13093bedac1df7c4c4c16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp38-cp38-manylinux1_x86_64.whl

Download URL torchvision-0.17.0-cp38-cp38-manylinux1_x86_64.whl
Size 6.9 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a54a15bd6f3dbb04ebd36c5a87530b2e090ee4b9b15eb89eda558ab3e50396a0
BLAKE2b-256 checksum
How to use checksums
b4578b9e5817bde4c11fdb069be1523e78f48a1bc97391e73d69b9f35b29c059
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL torchvision-0.17.0-cp38-cp38-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
477f6e64a9d798c0f5adefc300acc220da6f17ef5c1e110d20108f66554fee4d
BLAKE2b-256 checksum
How to use checksums
214bcd2bb631e0774d9ec19bd258cdc75da71422be1d5a503b2d2286cfce2300
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release files / torchvision-0.17.0-cp38-cp38-macosx_10_13_x86_64.whl

Download URL torchvision-0.17.0-cp38-cp38-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.8 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
870d7cda57420e44d20eb07bfe37bf5344a06434a7a6195b4c7f3dd55838587d
BLAKE2b-256 checksum
How to use checksums
16e25765a34a0aa4930155ce226f5f68b744f89dbf88d7e0c53ce05ae9b3580f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.5

Release history Release notifications | RSS feed

This release

0.17.0 This release

25 release files

0.9.1

16 release files

0.8.2

8 release files

0.8.1

6 release files

0.8.0

6 release files

0.7.0

6 release files

0.6.1

8 release files

0.6.0

8 release files

0.5.0

15 release files

0.4.2

9 release files

0.4.1

12 release files

0.4.0

9 release files

0.3.0

12 release files

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.9

1 release file

0.1.8

1 release file

0.1.7

1 release file

0.1.6

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page