Skip to content

Commit

Permalink
Bump version to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Jan 2, 2023
1 parent bfdc886 commit 0d81ef2
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,24 @@

### Fixes and improvements

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

### New features

* Support T5 models, including the variants T5v1.1 and mT5
* Support loading the model files from memory:
* Python: see the `files` argument in the constructor of classes loading models
* C++: see the `models::ModelMemoryReader` class

### Fixes and improvements

* Improve the quantization accuracy of OPT models by applying the [SmoothQuant](https://github.com/mit-han-lab/smoothquant) technique during conversion (pre-computed activation scales should be passed to the converter option `--activation_scales`)
* Fix conversion of BART-like models from HuggingFace that are using a different number of encoder and decoder layers
* Fix compilation when no BLAS CPU backend is selected
* Remove no longer relevant CMake warning when the project is compiled without oneDNN
* Update oneDNN to 3.0
* Update oneMKL to 2023.0

## [v3.2.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.2.0) (2022-12-12)

### New features
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.2.0"
__version__ = "3.3.0"

0 comments on commit 0d81ef2

Please sign in to comment.