OTVision
OTVision copied to clipboard
Bump torchvision from 0.18.1 to 0.19.1
Bumps torchvision from 0.18.1 to 0.19.1.
Release notes
Sourced from torchvision's releases.
TorchVision 0.19.1 Release
This is a patch release, which is compatible with PyTorch 2.4.1. There are no new features added.
Torchvision 0.19 release
Highlights
Encoding / Decoding images
Torchvision is extending its encoding/decoding capabilities. For this version, we added a GIF decoder which is available as
torchvision.io.decode_gif(raw_tensor)
,torchvision.io.decode_image(raw_tensor)
, andtorchvision.io.read_image(path_to_image)
.We also added support for jpeg GPU encoding in
torchvision.io.encode_jpeg()
. This is 10X faster than the existing CPU jpeg encoder.Stay tuned for more improvements coming in the next versions. We plan to improve jpeg GPU decoding, and add more image decoders (webp in particular).
Resizing according to the longest edge of an image
It is now possible to resize images by setting
torchvision.transforms.v2.Resize(max_size=N)
: this will resize the longest edge of the image exactly tomax_size
, making sure the image dimension don't exceed this value. Read more on the docs!Detailed changes
Bug Fixes
[datasets]
SBDataset
: Only download noval file when image_set='train_noval' (#8475) [datasets] Update the download url in classEMNIST
(#8350) [io] Fix compilation error when there is nolibjpeg
(#8342) [reference scripts] Fix use ofcutmix_alpha
in classification training references (#8448) [utils] AllowK=1
indraw_keypoints
(#8439)New Features
[io] Add decoder for GIF images (
decode_gif()
,decode_image()
,read_image()
) (#8406, #8419) [transforms] AddGaussianNoise
transform (#8381)Improvements
[transforms] Allow v2
Resize
to resize longer edge exactly tomax_size
(#8459) [transforms] Addmin_area
parameter toSanitizeBoundingBox
(#7735) [transforms] Makeadjust_hue()
work withnumpy 2.0
(#8463) [transforms] Enable one-hot-encoded labels inMixUp
andCutMix
(#8427) [transforms] Create kernel on-device fortransforms.functional.gaussian_blur
(#8426) [io] Adding GPU acceleration toencode_jpeg
(10X faster than CPU encoder) (#8391) [io]read_video
: acceptBytesIO
objects onpyav
backend (#8442) [io] Add compatibility with FFMPEG 7.0 (#8408) [datasets] Add extra to installgdown
(#8430) [datasets] Support encodedRLE
format in forCOCO
segmentations (#8387) [datasets] Added binary cat vs dog classification target type to Oxford pet dataset (#8388)
... (truncated)
Commits
6194369
[cherry-pick] Restrict ffmpeg to 4.2+.X versions to resolve linux conda build...5bada1f
Cherry-Pick Pin setuptools to 72.1.0 (#8606)99d97fa
Update version.txt to 0.19.148b1edf
Remove prototype area for 0.19 (#8491)f44f20c
Use@release/2
.4 instead of@main
for CI jobs (#8490)143d078
Adding GPU acceleration to encode_jpeg (#8391)f96c42f
Re-enable vision MPS builds (#8485)f1bcbd3
[FBcode->GH] Fix using namespace in pytorch/vision/torchvision/csrc/io/video/...27764a1
Skip flaky earth gif test on OSS CI (#8480)b09b3f6
Remove unused dynamo import (#8451)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@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)