Skip to content

Commit

Permalink
Bump version to 3.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Sep 18, 2023
1 parent 8bcbeb6 commit 2203ad5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

### Fixes and improvements

## [v3.20.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.20.0) (2023-09-18)

### New features

* Update the Transformers converter to support more model architectures:
* MixFormerSequential (used by microsoft/phi-1_5)
* Accept batch inputs in method `generate_tokens`
* Add method `async_generate_tokens` to return an asynchronous generator compatible with `asyncio`

### Fixes and improvements

* Remove the epsilon value in the softmax CPU kernel for consistency with other implementations
* Optimize implementation of the Dynamic Time Wrapping (DTW) function (used for Whisper alignment)
* Avoid an unnecessary copy of the input arguments in method `Whisper::align`

## [v3.19.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.19.0) (2023-08-31)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion python/ctranslate2/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "3.19.0"
__version__ = "3.20.0"

0 comments on commit 2203ad5

Please sign in to comment.