Skip to content

Commit

Permalink
Bump version to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Feb 10, 2023
1 parent 68e507c commit cbbb0dc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@

### Fixes and improvements

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

### New features

* Add a patience factor for beam search to continue decoding until `beam_size * patience` hypotheses are finished, as described in [Kasai et al. 2022](https://arxiv.org/abs/2204.05424)
* Implement all GELU variants and select them accordingly when converting models:
* Tanh approximation (already implemented)
* Sigmoid approximation
* Reference implementation based on the CDF

### Fixes and improvements

* Fix incorrect outputs of T5 models due to a bug in the CUDA kernel of the RMS normalization
* Raise an error if the Whisper input shape is incorrect
* Optimize the transposition operator used in the multi-head attention when running on GPU
* Remove the upper limit in `python_requires` to facilitate the package installation with tools like Poetry and PDM

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

### 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.4.0"
__version__ = "3.5.0"

0 comments on commit cbbb0dc

Please sign in to comment.