Skip to content

Commit

Permalink
Bump version to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Feb 16, 2023
1 parent b142c82 commit b9dc492
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.6.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.6.0) (2023-02-16)

### New features

* Build the Windows Python wheels with cuDNN to enable GPU execution of Whisper models
* Add the model attribute `Whisper.is_multilingual`

### Fixes and improvements

* Reduce the beam search memory usage by not duplicating the decoder states that are the same in each beam (e.g. the projected memory keys and values)
* Optimize the dot product attention during beam search by moving the query beam dimension to the time dimension
* Fix support of English-only Whisper models
* Include the prefix tokens (if they exist) in the output of `Whisper.generate`
* Log a warning when the model weights are implicitly converted to another type

## [v3.5.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.5.1) (2023-02-13)

### Fixes and improvements
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.5.1"
__version__ = "3.6.0"

0 comments on commit b9dc492

Please sign in to comment.