Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

build(deps): bump torchvision from 0.11.3 to 0.15.2 in /requirements #1632

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 3, 2023

Bumps torchvision from 0.11.3 to 0.15.2.

Release notes

Sourced from torchvision's releases.

TorchVision 0.15.2 Release

This is a minor release, which is compatible with PyTorch 2.0.1 and contains some minor bug fixes.

Highlights

Bug Fixes

TorchVision 0.15 - New transforms API!

Highlights

[BETA] New transforms API

TorchVision is extending its Transforms API! Here is what’s new:

  • You can use them not only for Image Classification but also for Object Detection, Instance & Semantic Segmentation and Video Classification.
  • You can use new functional transforms for transforming Videos, Bounding Boxes and Segmentation Masks.

The API is completely backward compatible with the previous one, and remains the same to assist the migration and adoption. We are now releasing this new API as Beta in the torchvision.transforms.v2 namespace, and we would love to get early feedback from you to improve its functionality. Please reach out to us if you have any questions or suggestions.

import torchvision.transforms.v2 as transforms
Exactly the same interface as V1:
trans = transforms.Compose([
transforms.ColorJitter(contrast=0.5),
transforms.RandomRotation(30),
transforms.CenterCrop(480),
])
imgs, bboxes, masks, labels = trans(imgs, bboxes, masks, labels)

You can read more about these new transforms in our docs, and you can also check out our examples:

Note that this API is still Beta. While we do not expect major breaking changes, some APIs may still change according to user feedback. Please submit any feedback you may have in pytorch/vision#6753, and you can also check out pytorch/vision#7319 to learn more about the APIs that we suspect might involve future changes.

[BETA] New Video Swin Transformer

We added a Video SwinTransformer model is based on the Video Swin Transformer paper.

import torch
from torchvision.models.video import swin3d_t
video = torch.rand(1, 3, 32, 800, 600)
or swin3d_b, swin3d_s
</tr></table>

... (truncated)

Commits
  • fa99a53 Remove temporary channel for python 3.11 (#7505) (#7532)
  • 3a17f14 [Release only change] Advance version for minor release (#7531)
  • 83ef3a6 [CHERRY-PICK] prevent unwrapping in SanitizeBoundingBoxes (#7446) (#7450)
  • 2bda93b [CHERRY-PICK] MovingMNIST split fix (#7449) (#7451)
  • e872006 [Cherry-pick for 0.15.2] move parameter sampling of RandomPhotometricDistort ...
  • 42759b1 Version number bump for vision (#7419)
  • 0ca0735 [Cherry-pick for 0.15] Fix warning message (#7395)
  • a2c033c Remove prototype code / tests / CI on release branch (#7390)
  • 96bdbe0 Skip some warning test on 3.10 to avoid MKL-related warning (and failure) (#7...
  • 23e3ede [Cherry-pick for 0.15] Use python 3.9 conda environment for cmake circleci wo...
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [torchvision](https://github.com/pytorch/vision) from 0.11.3 to 0.15.2.
- [Release notes](https://github.com/pytorch/vision/releases)
- [Commits](pytorch/vision@v0.11.3...v0.15.2)

---
updated-dependencies:
- dependency-name: torchvision
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the enhancement New feature or request label Jul 3, 2023
@dependabot dependabot bot requested a review from a team July 3, 2023 11:20
requirements/testing_serve.txt Outdated Show resolved Hide resolved
@Borda Borda enabled auto-merge (squash) July 3, 2023 11:46
@codecov
Copy link

codecov bot commented Jul 3, 2023

Codecov Report

Merging #1632 (b482904) into master (b5ecb1d) will decrease coverage by 1%.
The diff coverage is n/a.

Additional details and impacted files
@@          Coverage Diff           @@
##           master   #1632   +/-   ##
======================================
- Coverage      85%     85%   -1%     
======================================
  Files         291     291           
  Lines       12867   12867           
======================================
- Hits        10994   10895   -99     
- Misses       1873    1972   +99     

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant