Skip to content

Commit

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

## Changelog
- 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

- v0.3.1
- Implement the distilled [`small100`](https://huggingface.co/alirezamsh/small100) model by [Mohammadshahi et al. (2022)](https://aclanthology.org/2022.emnlp-main.571/) and use this model by default.
- Enable half-precision inference for `m2m100` models and `small100` by default; see (/experiments/results/summary.md) for benchmark results
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.1
version = 0.3.2
author = Jannis Vamvas
author_email = vamvas@cl.uzh.ch
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.1"
__version__ = "0.3.2"

0 comments on commit ee2e8ad

Please sign in to comment.