-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
35 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,3 +149,4 @@ checklink/cookies.txt | |
|
||
# Quarto | ||
.quarto | ||
token |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Release notes | ||
|
||
<!-- do not remove --> | ||
|
||
## 0.0.2 | ||
* Added TER metric | ||
* Added functions to detect language support of online MT services | ||
* Updated COMET evaluation code to COMET v2.x | ||
* Added support for ModernMT including adaptive MT and use of reference TMs | ||
* Bugfixes | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.1" | ||
__version__ = "0.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,36 @@ | ||
[DEFAULT] | ||
# All sections below are required unless otherwise specified. | ||
# See https://github.com/fastai/nbdev/blob/master/settings.ini for examples. | ||
|
||
### Python library ### | ||
repo = mteval | ||
lib_name = %(repo)s | ||
version = 0.0.1 | ||
lib_name = mteval | ||
version = 0.0.2 | ||
min_python = 3.7 | ||
license = apache2 | ||
|
||
### nbdev ### | ||
doc_path = _docs | ||
lib_path = mteval | ||
nbs_path = nbs | ||
recursive = True | ||
tst_flags = notest | ||
put_version_in_init = True | ||
|
||
### Docs ### | ||
branch = main | ||
custom_sidebar = False | ||
doc_host = https://%(user)s.github.io | ||
doc_baseurl = /%(repo)s | ||
git_url = https://github.com/%(user)s/%(repo)s | ||
title = %(lib_name)s | ||
|
||
### PyPI ### | ||
doc_host = https://achimr.github.io | ||
doc_baseurl = /mteval | ||
git_url = https://github.com/achimr/mteval | ||
title = mteval | ||
audience = Developers | ||
author = Polyglot Technology LLC | ||
author_email = info@polyglot.technology | ||
copyright = 2022 onwards, %(author)s | ||
author = Achim Ruopp | ||
author_email = achimru@gmail.com | ||
copyright = 2022 onwards, Achim Ruopp | ||
description = Library to automate machine translation evaluation | ||
keywords = nbdev jupyter notebook python | ||
language = English | ||
status = 3 | ||
user = polyglottech | ||
|
||
### Optional ### | ||
user = achimr | ||
requirements = sacrebleu[ja,ko] requests python-dotenv[cli] google-cloud-translate boto3 deepl unbabel-comet langcodes modernmt | ||
# dev_requirements = | ||
# console_scripts = | ||
black_formatting = False | ||
readme_nb = index.ipynb | ||
allowed_metadata_keys = | ||
allowed_cell_metadata_keys = | ||
jupyter_hooks = True | ||
clean_ids = True | ||
clear_all = False | ||
|