Skip to content

Commit 212d526

Browse files
committed
Bump version to 0.3.3
1 parent 1a5b006 commit 212d526

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,12 @@ See [experiments/README.md](experiments/README.md)
159159
- Data: See data subdirectories
160160

161161
## Changelog
162+
163+
- v0.3.3
164+
- Update minimum required Python version to 3.8
165+
- Require transformers<4.34 to ensure compatibility for `small100` model
166+
- `m2m100`/`small100`: Stop adding extra EOS tokens when scoring, which is not needed anymore
167+
162168
- v0.3.2
163169
- 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`).
164170
- Improve caching efficiency

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = nmtscore
3-
version = 0.3.2
3+
version = 0.3.3
44
author = Jannis Vamvas
55
author_email = vamvas@cl.uzh.ch
66
description = A library of translation-based text similarity measures

src/nmtscore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from nmtscore.scorer import NMTScorer
22

3-
__version__ = "0.3.2"
3+
__version__ = "0.3.3"

0 commit comments

Comments
 (0)