Skip to content

Commit

Permalink
Bump version to 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jvamvas committed Dec 11, 2023
1 parent 1a5b006 commit 212d526
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@ See [experiments/README.md](experiments/README.md)
- Data: See data subdirectories

## Changelog

- v0.3.3
- Update minimum required Python version to 3.8
- Require transformers<4.34 to ensure compatibility for `small100` model
- `m2m100`/`small100`: Stop adding extra EOS tokens when scoring, which is not needed anymore

- v0.3.2
- Fix score calculation with `small100` model (account for the fact that the target sequence is not prefixed with the target language, as is the case for `m2m100`).
- Improve caching efficiency
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = nmtscore
version = 0.3.2
version = 0.3.3
author = Jannis Vamvas
author_email = [email protected]
description = A library of translation-based text similarity measures
Expand Down
2 changes: 1 addition & 1 deletion src/nmtscore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from nmtscore.scorer import NMTScorer

__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 212d526

Please sign in to comment.