# torchvision
[![total torchvision downloads](https://pepy.tech/badge/torchvision)](https://pepy.tech/project/torchvision)
[![documentation](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)](https://pytorch.org/vision/stable/index.html)
The torchvision package consists of popular datasets, model architectures, and common image transformations for computer
vision.
## Installation
Please refer to the [official
instructions](https://pytorch.org/get-started/locally/) to install the stable
versions of `torch` and `torchvision` on your system.
To build source, refer to our [contributing
page](https://github.com/pytorch/vision/blob/main/CONTRIBUTING.md#development-installation).
The following is the corresponding `torchvision` versions and supported Python
versions.
| `torch` | `torchvision` | Python |
| ------------------ | ------------------ | ------------------- |
| `main` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.12` |
| `2.4` | `0.19` | `>=3.8`, `<=3.12` |
| `2.3` | `0.18` | `>=3.8`, `<=3.12` |
| `2.2` | `0.17` | `>=3.8`, `<=3.11` |
| `2.1` | `0.16` | `>=3.8`, `<=3.11` |
| `2.0` | `0.15` | `>=3.8`, `<=3.11` |
<details>
<summary>older versions</summary>
| `torch` | `torchvision` | Python |
|---------|-------------------|---------------------------|
| `1.13` | `0.14` | `>=3.7.2`, `<=3.10` |
| `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` |
</details>
## Image Backends
Torchvision currently supports the following image backends:
- torch tensors
- PIL images:
- [Pillow](https://python-pillow.org/)
- [Pillow-SIMD](https://github.com/uploadcare/pillow-simd) - a **much faster** drop-in replacement for Pillow with SIMD.
Read more in in our [docs](https://pytorch.org/vision/stable/transforms.html).
## [UNSTABLE] 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<4.3'
python setup.py install
```
# Using the models on C++
Refer to [example/cpp](https://github.com/pytorch/vision/tree/main/examples/cpp).
**DISCLAIMER**: the `libtorchvision` library includes the torchvision
custom ops as well as most of the C++ torchvision APIs. Those APIs do not come
with any backward-compatibility guarantees and may change from one version to
the next. Only the Python APIs are stable and with backward-compatibility
guarantees. So, if you need stability within a C++ environment, your best bet is
to export the Python APIs via torchscript.
## Documentation
You can find the API documentation on the pytorch website: <https://pytorch.org/vision/stable/index.html>
## Contributing
See the [CONTRIBUTING](CONTRIBUTING.md) 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](https://github.com/facebookresearch/SWAG/blob/main/LICENSE) for additional details.
## Citing TorchVision
If you find TorchVision useful in your work, please consider citing the following BibTeX entry:
```bibtex
@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}}
}
```
Raw data
{
"_id": null,
"home_page": "https://github.com/pytorch/vision",
"name": "torchvision",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "PyTorch Core Team",
"author_email": "soumith@pytorch.org",
"download_url": null,
"platform": null,
"description": "# torchvision\n\n[![total torchvision downloads](https://pepy.tech/badge/torchvision)](https://pepy.tech/project/torchvision)\n[![documentation](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)](https://pytorch.org/vision/stable/index.html)\n\nThe torchvision package consists of popular datasets, model architectures, and common image transformations for computer\nvision.\n\n## Installation\n\nPlease refer to the [official\ninstructions](https://pytorch.org/get-started/locally/) to install the stable\nversions of `torch` and `torchvision` on your system.\n\nTo build source, refer to our [contributing\npage](https://github.com/pytorch/vision/blob/main/CONTRIBUTING.md#development-installation).\n\nThe following is the corresponding `torchvision` versions and supported Python\nversions.\n\n| `torch` | `torchvision` | Python |\n| ------------------ | ------------------ | ------------------- |\n| `main` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.12` |\n| `2.4` | `0.19` | `>=3.8`, `<=3.12` |\n| `2.3` | `0.18` | `>=3.8`, `<=3.12` |\n| `2.2` | `0.17` | `>=3.8`, `<=3.11` |\n| `2.1` | `0.16` | `>=3.8`, `<=3.11` |\n| `2.0` | `0.15` | `>=3.8`, `<=3.11` |\n\n<details>\n <summary>older versions</summary>\n\n| `torch` | `torchvision` | Python |\n|---------|-------------------|---------------------------|\n| `1.13` | `0.14` | `>=3.7.2`, `<=3.10` |\n| `1.12` | `0.13` | `>=3.7`, `<=3.10` |\n| `1.11` | `0.12` | `>=3.7`, `<=3.10` |\n| `1.10` | `0.11` | `>=3.6`, `<=3.9` |\n| `1.9` | `0.10` | `>=3.6`, `<=3.9` |\n| `1.8` | `0.9` | `>=3.6`, `<=3.9` |\n| `1.7` | `0.8` | `>=3.6`, `<=3.9` |\n| `1.6` | `0.7` | `>=3.6`, `<=3.8` |\n| `1.5` | `0.6` | `>=3.5`, `<=3.8` |\n| `1.4` | `0.5` | `==2.7`, `>=3.5`, `<=3.8` |\n| `1.3` | `0.4.2` / `0.4.3` | `==2.7`, `>=3.5`, `<=3.7` |\n| `1.2` | `0.4.1` | `==2.7`, `>=3.5`, `<=3.7` |\n| `1.1` | `0.3` | `==2.7`, `>=3.5`, `<=3.7` |\n| `<=1.0` | `0.2` | `==2.7`, `>=3.5`, `<=3.7` |\n\n</details>\n\n## Image Backends\n\nTorchvision currently supports the following image backends:\n\n- torch tensors\n- PIL images:\n - [Pillow](https://python-pillow.org/)\n - [Pillow-SIMD](https://github.com/uploadcare/pillow-simd) - a **much faster** drop-in replacement for Pillow with SIMD.\n\nRead more in in our [docs](https://pytorch.org/vision/stable/transforms.html).\n\n## [UNSTABLE] Video Backend\n\nTorchvision currently supports the following video backends:\n\n- [pyav](https://github.com/PyAV-Org/PyAV) (default) - Pythonic binding for ffmpeg libraries.\n- video_reader - This needs ffmpeg to be installed and torchvision to be built from source. There shouldn't be any\n conflicting version of ffmpeg installed. Currently, this is only supported on Linux.\n\n```\nconda install -c conda-forge 'ffmpeg<4.3'\npython setup.py install\n```\n\n# Using the models on C++\n\nRefer to [example/cpp](https://github.com/pytorch/vision/tree/main/examples/cpp).\n\n**DISCLAIMER**: the `libtorchvision` library includes the torchvision\ncustom ops as well as most of the C++ torchvision APIs. Those APIs do not come\nwith any backward-compatibility guarantees and may change from one version to\nthe next. Only the Python APIs are stable and with backward-compatibility\nguarantees. So, if you need stability within a C++ environment, your best bet is\nto export the Python APIs via torchscript.\n\n## Documentation\n\nYou can find the API documentation on the pytorch website: <https://pytorch.org/vision/stable/index.html>\n\n## Contributing\n\nSee the [CONTRIBUTING](CONTRIBUTING.md) file for how to help out.\n\n## Disclaimer on Datasets\n\nThis is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets,\nvouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to\ndetermine whether you have permission to use the dataset under the dataset's license.\n\nIf you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset\nto be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML\ncommunity!\n\n## Pre-trained Model License\n\nThe pre-trained models provided in this library may have their own licenses or terms and conditions derived from the\ndataset used for training. It is your responsibility to determine whether you have permission to use the models for your\nuse case.\n\nMore specifically, SWAG models are released under the CC-BY-NC 4.0 license. See\n[SWAG LICENSE](https://github.com/facebookresearch/SWAG/blob/main/LICENSE) for additional details.\n\n## Citing TorchVision\n\nIf you find TorchVision useful in your work, please consider citing the following BibTeX entry:\n\n```bibtex\n@software{torchvision2016,\n title = {TorchVision: PyTorch's Computer Vision library},\n author = {TorchVision maintainers and contributors},\n year = 2016,\n journal = {GitHub repository},\n publisher = {GitHub},\n howpublished = {\\url{https://github.com/pytorch/vision}}\n}\n```\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "image and video datasets and models for torch deep learning",
"version": "0.20.1",
"project_urls": {
"Homepage": "https://github.com/pytorch/vision"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8d59aea68d755da1451e1a0d894528a7edc9b58eb30d33e274bf21bef28dad1a",
"md5": "998f98684f8e9f73d40d133b406ea062",
"sha256": "4878fefb96ef293d06c27210918adc83c399d9faaf34cda5a63e129f772328f1"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "998f98684f8e9f73d40d133b406ea062",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1787552,
"upload_time": "2024-10-29T17:40:34",
"upload_time_iso_8601": "2024-10-29T17:40:34.071105Z",
"url": "https://files.pythonhosted.org/packages/8d/59/aea68d755da1451e1a0d894528a7edc9b58eb30d33e274bf21bef28dad1a/torchvision-0.20.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2f67ff89a9f8703f623f5664afd66c8600e3f09fe188e1e0b7e6f9a8617f865",
"md5": "c9fd1a852bbc6e495bd9081370777dde",
"sha256": "8ffbdf8bf5b30eade22d459f5a313329eeadb20dc75efa142987b53c007098c3"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp310-cp310-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "c9fd1a852bbc6e495bd9081370777dde",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7238975,
"upload_time": "2024-10-29T17:41:03",
"upload_time_iso_8601": "2024-10-29T17:41:03.374412Z",
"url": "https://files.pythonhosted.org/packages/a2/f6/7ff89a9f8703f623f5664afd66c8600e3f09fe188e1e0b7e6f9a8617f865/torchvision-0.20.1-cp310-cp310-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7ce4c31e9b96cc4f9fec746b258d2aa35f8d1247f4f58d63f9c505ea5eb254d",
"md5": "e8707a957eebc7fc36aba131a5703932",
"sha256": "75f8a4d51a593c4bab6c9bf7d75bdd88691b00a53b07656678bc55a3a753dd73"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e8707a957eebc7fc36aba131a5703932",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 14265343,
"upload_time": "2024-10-29T17:40:57",
"upload_time_iso_8601": "2024-10-29T17:40:57.799800Z",
"url": "https://files.pythonhosted.org/packages/f7/ce/4c31e9b96cc4f9fec746b258d2aa35f8d1247f4f58d63f9c505ea5eb254d/torchvision-0.20.1-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1711b5ce67715bbbec8798fb48c4a20ac28828aec1710ac01091a3eddcb8e075",
"md5": "7ce5006c4ac6b28ce23929f1897b5df8",
"sha256": "22c2fa44e20eb404b85e42b22b453863a14b0927d25e550fd4f84eea97fa5b39"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ce5006c4ac6b28ce23929f1897b5df8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1562413,
"upload_time": "2024-10-29T17:40:39",
"upload_time_iso_8601": "2024-10-29T17:40:39.991624Z",
"url": "https://files.pythonhosted.org/packages/17/11/b5ce67715bbbec8798fb48c4a20ac28828aec1710ac01091a3eddcb8e075/torchvision-0.20.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28574d7ad90be612f5ac6c4bdafcb0ff13e818e14a340a88c8ca00d9ed8c2dad",
"md5": "49dc0eba2266215e036b0233589dd7fa",
"sha256": "344b339e15e6bbb59ee0700772616d0afefd209920c762b1604368d8c3458322"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "49dc0eba2266215e036b0233589dd7fa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1787548,
"upload_time": "2024-10-29T17:40:55",
"upload_time_iso_8601": "2024-10-29T17:40:55.292420Z",
"url": "https://files.pythonhosted.org/packages/28/57/4d7ad90be612f5ac6c4bdafcb0ff13e818e14a340a88c8ca00d9ed8c2dad/torchvision-0.20.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dee9e190ecec448d5a2abad8348cf085fcb39962a491e3f40dcb023721e04feb",
"md5": "2dd12cda7791151268bb6ff66a1aef1c",
"sha256": "86f6523dee420000fe14c3527f6c8e0175139fda7d995b187f54a0b0ebec7eb6"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp311-cp311-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "2dd12cda7791151268bb6ff66a1aef1c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7241222,
"upload_time": "2024-10-29T17:40:38",
"upload_time_iso_8601": "2024-10-29T17:40:38.056706Z",
"url": "https://files.pythonhosted.org/packages/de/e9/e190ecec448d5a2abad8348cf085fcb39962a491e3f40dcb023721e04feb/torchvision-0.20.1-cp311-cp311-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1a3cbb8177e5e379f0c040b00c6f80f14d323a97e30495d7115d169b101b2f7",
"md5": "fedbf602bad4d4f63bb65144ae5b1a4f",
"sha256": "a40d766345927639da322c693934e5f91b1ba2218846c7104b868dea2314ce8e"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fedbf602bad4d4f63bb65144ae5b1a4f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 14267510,
"upload_time": "2024-10-29T17:40:53",
"upload_time_iso_8601": "2024-10-29T17:40:53.031038Z",
"url": "https://files.pythonhosted.org/packages/b1/a3/cbb8177e5e379f0c040b00c6f80f14d323a97e30495d7115d169b101b2f7/torchvision-0.20.1-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6955ce836703ff77bb21582c3098d5311f8ddde7eadc7eab04be9561961f4725",
"md5": "a2c4c8c8fbfdbe3d56851d62b13aafc3",
"sha256": "5b501d5c04b034d2ecda96a31ed050e383cf8201352e4c9276ca249cbecfded0"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a2c4c8c8fbfdbe3d56851d62b13aafc3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1562402,
"upload_time": "2024-10-29T17:40:49",
"upload_time_iso_8601": "2024-10-29T17:40:49.052072Z",
"url": "https://files.pythonhosted.org/packages/69/55/ce836703ff77bb21582c3098d5311f8ddde7eadc7eab04be9561961f4725/torchvision-0.20.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5eb4ba19616378f2bc085999432fded2b7dfdbdccc6dd0fc293203452508100",
"md5": "f2e49c3b81664c24886524fe9428e700",
"sha256": "1a31256ff945d64f006bb306813a7c95a531fe16bfb2535c837dd4c104533d7a"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f2e49c3b81664c24886524fe9428e700",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1787553,
"upload_time": "2024-10-29T17:40:50",
"upload_time_iso_8601": "2024-10-29T17:40:50.630500Z",
"url": "https://files.pythonhosted.org/packages/c5/eb/4ba19616378f2bc085999432fded2b7dfdbdccc6dd0fc293203452508100/torchvision-0.20.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d47500a852275ade58d3dc474530f7a7b6bc999a817148f0eb59d4fde12eb955",
"md5": "3362eeb10feb923a6bff7440e6120cb3",
"sha256": "17cd78adddf81dac57d7dccc9277a4d686425b1c55715f308769770cb26cad5c"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp312-cp312-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "3362eeb10feb923a6bff7440e6120cb3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7240323,
"upload_time": "2024-10-29T17:40:44",
"upload_time_iso_8601": "2024-10-29T17:40:44.951513Z",
"url": "https://files.pythonhosted.org/packages/d4/75/00a852275ade58d3dc474530f7a7b6bc999a817148f0eb59d4fde12eb955/torchvision-0.20.1-cp312-cp312-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aff0ca1445406eb12cbeb7a41fc833a1941ede78e7c55621198b83ecd7bcfd0f",
"md5": "e462cd8511fead7e71dcd25390afd489",
"sha256": "9f853ba4497ac4691815ad41b523ee23cf5ba4f87b1ce869d704052e233ca8b7"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e462cd8511fead7e71dcd25390afd489",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 14266936,
"upload_time": "2024-10-29T17:40:31",
"upload_time_iso_8601": "2024-10-29T17:40:31.335840Z",
"url": "https://files.pythonhosted.org/packages/af/f0/ca1445406eb12cbeb7a41fc833a1941ede78e7c55621198b83ecd7bcfd0f/torchvision-0.20.1-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c31800993d420b1d6e88582e51d4bc82c824c99a2e9c045d50eaf9b34fff729a",
"md5": "3312d4b4321656621af58f77ae8a4df8",
"sha256": "4a330422c36dbfc946d3a6c1caec3489db07ecdf3675d83369adb2e5a0ca17c4"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "3312d4b4321656621af58f77ae8a4df8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1562392,
"upload_time": "2024-10-29T17:40:47",
"upload_time_iso_8601": "2024-10-29T17:40:47.600064Z",
"url": "https://files.pythonhosted.org/packages/c3/18/00993d420b1d6e88582e51d4bc82c824c99a2e9c045d50eaf9b34fff729a/torchvision-0.20.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a114c13e8b49fa812266e3340969b3157b11928a3608faa3a0448b8a564b01b8",
"md5": "3f42e2f0190a8c07b11a51efd2825c81",
"sha256": "2cd58406978b813188cf4e9135b218775b57e0bb86d4a88f0339874b8a224819"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3f42e2f0190a8c07b11a51efd2825c81",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1787569,
"upload_time": "2024-10-29T17:40:36",
"upload_time_iso_8601": "2024-10-29T17:40:36.301079Z",
"url": "https://files.pythonhosted.org/packages/a1/14/c13e8b49fa812266e3340969b3157b11928a3608faa3a0448b8a564b01b8/torchvision-0.20.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f16cf5fcf2e2a5828643354939ececbcd45bfde4d0355b1e44722c960c6f81c2",
"md5": "f6162fcf1ad6e554030ea9d841398d6d",
"sha256": "408766b2f0ada9e1bc880d12346cec9638535af5df6459ba9ac4ce5c46402f91"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp39-cp39-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "f6162fcf1ad6e554030ea9d841398d6d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7240810,
"upload_time": "2024-10-29T17:41:00",
"upload_time_iso_8601": "2024-10-29T17:41:00.894322Z",
"url": "https://files.pythonhosted.org/packages/f1/6c/f5fcf2e2a5828643354939ececbcd45bfde4d0355b1e44722c960c6f81c2/torchvision-0.20.1-cp39-cp39-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44a7a69e090ee59b6b042580304524af035dc0e980f05f9b0592f2153de94579",
"md5": "556ff6774be9a71e752d5627f2d3a076",
"sha256": "abcb8005de8dc393dbd1310ecb669dc68ab664b9107af6d698a6341d1d3f2c3c"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp39-cp39-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "556ff6774be9a71e752d5627f2d3a076",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1896028,
"upload_time": "2024-10-29T17:40:43",
"upload_time_iso_8601": "2024-10-29T17:40:43.251067Z",
"url": "https://files.pythonhosted.org/packages/44/a7/a69e090ee59b6b042580304524af035dc0e980f05f9b0592f2153de94579/torchvision-0.20.1-cp39-cp39-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d41e0bd619dd8aa443e167fb62c6167ecb9b6ce8f275e9ca1842e7994fd9653d",
"md5": "8655df3fdecb07e38aedcfb3e644684c",
"sha256": "ea9678163bbf19568f4f959d927f3751eeb833cc8eac949de507edde38c1fc9f"
},
"downloads": -1,
"filename": "torchvision-0.20.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "8655df3fdecb07e38aedcfb3e644684c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1562339,
"upload_time": "2024-10-29T17:40:41",
"upload_time_iso_8601": "2024-10-29T17:40:41.715823Z",
"url": "https://files.pythonhosted.org/packages/d4/1e/0bd619dd8aa443e167fb62c6167ecb9b6ce8f275e9ca1842e7994fd9653d/torchvision-0.20.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-29 17:40:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pytorch",
"github_project": "vision",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "torchvision"
}