Skip to content

Commit

Permalink
Bump version to 3.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Jun 15, 2023
1 parent 5481035 commit 59d223a
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.16.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.16.0) (2023-06-15)

### New features

* Update the Transformers converter to support more architectures:
* Falcon-40B
* XLM-RoBERTa
* Add the generation option `sampling_topp` to enable top-p (nucleus) sampling
* Save vocabulary files in the JSON format to better support tokens containing newlines or carriage returns

### Fixes and improvements

* Fix the application of `min_length` and `max_length` when using `include_prompt_in_result=False` and a batch input with variable lengths: the length constraint should only apply to the sequence after the prompt
* Update oneDNN to 3.1.1

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

### 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.15.1"
__version__ = "3.16.0"

2 comments on commit 59d223a

@wsxiaoys
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Save vocabulary files in the JSON format to better support tokens containing newlines or carriage returns

Is the change backward compatible? For example, will the .txt file still be loadable by ctranslate2?

@guillaumekln
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the change is backward compatible.

Please sign in to comment.