Skip to content
This repository has been archived by the owner on Feb 18, 2025. It is now read-only.

Releases: juliendenize/torchaug

v0.6.1

18 Feb 10:52
Compare
Choose a tag to compare

Archive

This repository will now be archived as I plan to support other projects.

This last release update requirements to avoid having dependency issues.

What's Changed

Full Changelog: v0.6.0...v0.6.1

v0.6.0

01 Aug 12:29
fb5b3d0
Compare
Choose a tag to compare

What's Changed

Release of nested tensors

In this release, we provide a new set of tensors called nested tensors that allow to transform tensors of different shapes.
It does not rely on the beta tensors from Torch but if they are to be out at some point it will be the case.

Support of Python 3.12

With the new release of Torch 2.4, there is now the possibility to support python 3.12 for Torchaug !

Other

  • to_image now supports pillow images
  • the license header is now checked via the CI.

Commits

Full Changelog: v0.5.2...v0.6.0

v0.5.2

16 Jul 15:26
f0b97b6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.1...v0.5.2

v0.5.1

13 Jun 15:36
36e3b4c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

03 May 15:08
a1d269e
Compare
Choose a tag to compare

Highlights

Add the JPEG and RGB transforms introduced by Torchvision.

What's Changed

New Contributors

Full Changelog: v0.4.2...v0.5.0

v0.4.2

20 Mar 23:36
0bf8fda
Compare
Choose a tag to compare

Highlights

Full Changelog: v0.4.1...v0.4.2

v0.4.1

12 Mar 16:27
Compare
Choose a tag to compare

Highlights

Torchaug now follows Torchvision v2 transforms:

  • TA Tensor or Torchaug tensors behave similarly to Torchvision's TV Tensor with new types to handle batches of data.
  • transforms are only located in one package: torchaug.transforms and torchaug.batch_transforms is no longer supported.
  • All transforms in Torchvision v2 are also accessible in Torchaug.
  • LICENSE is now CeCILL-C.

Full Changelog: v0.3.3...v0.4.1

v0.3.3

15 Sep 23:18
d4b6ecc
Compare
Choose a tag to compare

Highlights

  • Add RandomGrayscale #14
  • Refractor code and docs to match Torchvision transforms category #13

Other

  • Rename BatchRandomGrayScale to BatchRandomGrayscale #14

v0.3.2

05 Sep 19:36
d6f5483
Compare
Choose a tag to compare

Highlights

  • Add VideoBase #12
  • Fix inplace error when batch random transforms have p=1 inside a wrapper d9ad37b
  • Fix video_format override by wrappers in video transforms inside the wrapper #12

Other

  • Add log api in image wrappers
  • Fix some of the doc

v0.3.1 Hotfix

30 Aug 18:44
7782243
Compare
Choose a tag to compare

Highlights

  • Hotfix v0.3.0 Wrapper that handled transforms wrongly
  • Improve documentation for wrappers
  • Set inplace default parameter to False for all BatchRandomTransform subclasses as wrappers should handle them for augmentations pipelines.