The Release 0.13 is not using the correct torch core version
See original GitHub issue🐛 Describe the bug
Currently the CI on branch release/0.13
is failing (I create dummy PR https://github.com/pytorch/vision/pull/6092 to track this).
We fail on type_check and this does not happen on main branch.
After looking at the error: https://app.circleci.com/pipelines/github/pytorch/vision/17906/workflows/8f008f5a-13b2-4207-a378-51ae705b99b7/jobs/1450718
especially on the installation of pytorch, we get:
#!/bin/bash -eo pipefail
pip install --user --progress-bar=off --pre torch --extra-index-url https://download.pytorch.org/whl/test/cpu/torch_test.html
Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/test/cpu/torch_test.html
Collecting torch
Downloading torch-1.11.0-cp37-cp37m-manylinux1_x86_64.whl (750.6 MB)
We should use the RC branch 1.12 from pytorch core but instead we get version 1.11.
After digging a bit deeper, if we search “torch-” on https://download.pytorch.org/whl/test/cpu/torch_test.html currently I can only see 4 versions and the latest one is indeed 1.11. I think there is a problem here.
Issue Analytics
- State:
- Created a year ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Could not find a version that satisfies the requirement torch ...
Currently, PyTorch on Windows only supports Python 3.7-3.9;. Installing Python 3.9.13 64-bit instead of Python 3.8.3 32-bit solved it for me.
Read more >Start Locally - PyTorch
Often, the latest CUDA version is better. Then, run the command that is presented to you. With ROCm. PyTorch via Anaconda is not...
Read more >torchtext - PyPI
torchtext. This repository consists of: torchtext.datasets: The raw text iterators for common NLP datasets. torchtext.data: Some basic NLP building blocks.
Read more >Release notes — PennyLane 0.28.0 documentation
from pennylane import numpy as np import torch import tensorflow as tf from jax import numpy as ... Recording queues should start and...
Read more >Open3D better than ever in our newest 0.13 release
Open3D 0.13.0 Release Notes. We welcome you to the 0.13.0 release of Open3D. This release is full of exciting new features with a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@pmeier I will send a PR now and do another branch cut
The original issue is resolved, but if you don’t mind I’d love your thoughts on https://github.com/pytorch/vision/issues/6099#issuecomment-1141867661 before closing