Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jun 29, 2022
1 parent 8f84099 commit 31896ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,18 +206,24 @@ classification. It was successfully applied in the paper

### Added

* Add new transforms: `Identity`, `Mix`, `Padding`, `RandomCrop` and `SpliceOut`
* Add new transforms: `Mix`, `Padding`, `RandomCrop` and `SpliceOut`

## [v0.11.0] - 2022-06-29

### Added

* Add new transform: `Identity`
* Add API for processing of targets alongside inputs. Some transforms experimentally
support this feature already.

### Changed

* Add `ObjectDict` output type as alternative to `torch.Tensor`. This alternative is opt-in for
now (for backwards-compatibility), but note that the old output type (`torch.Tensor`) is
deprecated and support for it will be removed in a future version.
now (for backwards-compatibility), but note that the old output type (`torch.Tensor`) is
deprecated and support for it will be removed in a future version.
* Allow specifying a file path, a folder path, a list of files or a list of folders to
`AddBackgroundNoise` and `ApplyImpulseResponse`
* Require newer version of `torch-pitch-shift` to ensure support for torchaudio 0.11 in `PitchShift`
* Add API for processing of targets alongside inputs. Some transforms experimentally
support this feature already.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion torch_audiomentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
from .utils.config import from_dict, from_yaml
from .utils.convolution import convolve

__version__ = "0.10.1"
__version__ = "0.11.0"

0 comments on commit 31896ce

Please sign in to comment.