diff --git a/OPUS-MT-testsets b/OPUS-MT-testsets index 097a813e..a63750cd 160000 --- a/OPUS-MT-testsets +++ b/OPUS-MT-testsets @@ -1 +1 @@ -Subproject commit 097a813eb2af72656288a777f0a7d35d202bd43c +Subproject commit a63750cd3aeff3ab06f76997bd568507592e9763 diff --git a/lib/dist.mk b/lib/dist.mk index 61985cd0..978d437c 100644 --- a/lib/dist.mk +++ b/lib/dist.mk @@ -7,12 +7,19 @@ TODAY := ${shell date +%F} DATE ?= ${TODAY} + +RELEASEDIR ?= ${PWD}/models +DEV_MODELDIR ?= ${WORKHOME}/models +MODELSHOME ?= ${RELEASEDIR} + OBJECTSTORAGE ?= https://object.pouta.csc.fi MODEL_CONTAINER ?= OPUS-MT-models DEV_MODEL_CONTAINER ?= OPUS-MT-dev +RELEASE_MODELS_URL ?= https://object.pouta.csc.fi/${MODEL_CONTAINER} +DEV_MODELS_URL ?= https://object.pouta.csc.fi/${DEV_MODEL_CONTAINER} +MODELS_URL ?= ${RELEASE_MODELS_URL} MODELINDEX ?= ${OBJECTSTORAGE}/${MODEL_CONTAINER}/index.txt -MODELSHOME ?= ${WORKHOME}/models -RELEASEDIR ?= ${PWD}/models +SKIP_DIST_EVAL ?= 0 ## TODO: better create a recipe for the yaml file and not the zip file @@ -28,6 +35,9 @@ RELEASE_PACKAGE = ${basename ${DIST_PACKAGE}}_${DATE}.zip RELEASE_YML = ${basename ${DIST_PACKAGE}}_${DATE}.yml +ALL_DIST_YML := ${sort ${shell find ${MODELSHOME}/ -name '*.yml' | sed -r 's/[\_\-][0-9]{4}-[0-9]{2}-[0-9]{2}.yml/.yml/'}} + + # previous name conventions: # # DIST_PACKAGE = ${MODELSHOME}/${LANGPAIRSTR}/${DATASET}.zip @@ -37,20 +47,14 @@ RELEASE_YML = ${basename ${DIST_PACKAGE}}_${DATE}.yml # RELEASE_YML = ${MODELSHOME}/${LANGPAIRSTR}/${DATASET}-${DATE}.yml - - MODEL_README = ${WORKDIR}/README.md MODEL_YML = ${patsubst %.npz,%.yml,${MODEL_FINAL}} - - get-model-release = ${shell wget -qq -O - ${MODELINDEX} | grep '^${1}/.*-.*\.zip' | LANG=en_US.UTF-8 sort -r} get-model-distro = ${shell echo ${wildcard ${1}/${2}/*.zip} | tr ' ' "\n" | LANG=en_US.UTF-8 sort -r} - - find-model: @echo ${call get-model-dist,${LANGPAIRSTR}} @@ -60,17 +64,11 @@ MIN_BLEU_SCORE ?= 20 .PHONY: dist local-dist global-dist release -## create a symbolic link to the latest model -## and make the package -dist: - ${MAKE} link-latest-model - ${MAKE} ${DIST_PACKAGE} +dist: ${DIST_YML} ## local distribution in workhome, no restrictions about BLEU local-dist: - ${MAKE} MODELSHOME=${WORKHOME}/models \ - MODELS_URL=https://object.pouta.csc.fi/${DEV_MODEL_CONTAINER} \ - dist + ${MAKE} MODELSHOME=${DEV_MODELDIR} MODELS_URL=${DEV_MODELS_URL} dist ## global distribution in models-dir, restrictions on BLEU global-dist release: @@ -109,100 +107,10 @@ scores: -## get the best model from all kind of alternative setups -## in the following sub directories (add prefix work-) -## scan various work directories - specify alternative dir's below - -ALT_MODEL_BASE = work- -# ALT_MODEL_DIR = bpe-old bpe-memad bpe spm-noalign bpe-align spm -# ALT_MODEL_DIR = spm langid -ALT_MODEL_DIR = langid - -.PHONY: best_dist_all best-dist-all -best-dist-all best_dist_all: - for l in $(sort ${shell ls ${ALT_MODEL_BASE}* | grep -- '-' | grep -v old | grep -v work}); do \ - if [ `find work*/$$l -name '*.npz' | wc -l` -gt 0 ]; then \ - d=`find work-spm/$$l -name '*.best-perplexity.npz' -exec basename {} \; | cut -f1 -d.`; \ - ${MAKE} SRCLANGS="`echo $$l | cut -f1 -d'-' | sed 's/\\+/ /g'`" \ - TRGLANGS="`echo $$l | cut -f2 -d'-' | sed 's/\\+/ /g'`" \ - DATASET=$$d best_dist; \ - fi \ - done - - - - -## find the best model according to test set scores -## and make a distribution package from that model -## (BLEU needs to be above MIN_BLEU_SCORE) -## NEW: don't trust models tested with GNOME test sets! - -## new version of finding the best model -## --> look at different model variants in each work-dir -## --> take only the best one to publish - -.PHONY: best_dist best-dist -best-dist best_dist: - m=0;\ - s=''; \ - echo "------------------------------------------------"; \ - echo "search best model for ${LANGPAIRSTR}"; \ - for d in work ${ALT_MODEL_DIR}; do \ - if [ -e "work-$$d/${LANGPAIRSTR}/test/${TESTSET}.trg" ]; then \ - e=`basename work-$$d/${LANGPAIRSTR}/test/${TESTSET}.trg | sed 's/\.trg$$//'`; \ - else \ - e=`ls work-$$d/${LANGPAIRSTR}/test/*.trg | tail -1 | xargs basename | sed 's/\.trg$$//'`; \ - fi; \ - echo "evaldata = $$e"; \ - if [ "$$e" != "GNOME" ]; then \ - I=`find work-$$d/${LANGPAIRSTR}/ -maxdepth 1 -name "$$e.*.eval" -printf "%f\n"`; \ - for i in $$I; do \ - x=`echo $$i | cut -f3 -d. | cut -f1 -d-`; \ - y=`echo $$i | cut -f3 -d. | cut -f2 -d- | sed 's/[0-9]$$//'`; \ - z=`echo $$i | cut -f2 -d.`; \ - v=`echo $$i | cut -f4 -d.`; \ - if [ `find work-$$d/${LANGPAIRSTR} -name "$$e.$$z.$$x-$$y[0-9].$$v.*.eval" | wc -l ` -gt 0 ]; then \ - b=`grep 'BLEU+' work-$$d/${LANGPAIRSTR}/$$e.$$z.$$x-$$y[0-9].$$v.*.eval | cut -f3 -d' ' | head -1`; \ - if (( $$(echo "$$m-$$b < 0" |bc -l) )); then \ - echo "$$d/$$i ($$b) is better than $$s ($$m)!"; \ - m=$$b; \ - E=$$i; \ - s=$$d; \ - else \ - echo "$$d/$$i ($$b) is worse than $$s ($$m)!"; \ - fi; \ - fi; \ - done; \ - fi \ - done; \ - echo "--------------- best = $$m ($$s/$$E) ---------------------------------"; \ - if [ "$$s" != "" ]; then \ - if (( $$(echo "$$m > ${MIN_BLEU_SCORE}" |bc -l) )); then \ - x=`echo $$E | cut -f3 -d. | cut -f1 -d-`; \ - y=`echo $$E | cut -f3 -d. | cut -f2 -d- | sed 's/[0-9]$$//'`; \ - z=`echo $$E | cut -f2 -d.`; \ - v=`echo $$E | cut -f4 -d.`; \ - ${MAKE} \ - MODELSHOME=${PWD}/models \ - PRE_SRC=$$x PRE_TRG=$$y \ - DATASET=$$z \ - MODELTYPE=$$v \ - MODELS_URL=https://object.pouta.csc.fi/${MODEL_CONTAINER} dist-$$s; \ - fi; \ - fi - - ## make a package for distribution -## old: only accept models with a certain evaluation score: -# if [ `grep BLEU $(TEST_EVALUATION) | cut -f3 -d ' ' | cut -f1 -d '.'` -ge ${MIN_BLEU_SCORE} ]; then \ - -# MODELS_URL ?= https://object.pouta.csc.fi/${DEV_MODEL_CONTAINER} -MODELS_URL ?= https://object.pouta.csc.fi/${MODEL_CONTAINER} -SKIP_DIST_EVAL = 0 - ## determine pre-processing type @@ -447,6 +355,7 @@ link-latest-model: fi + ${DIST_PACKAGE}: ${MODEL_FINAL} ifneq (${SKIP_DIST_EVAL},1) @${MAKE} $(TEST_EVALUATION) @@ -518,6 +427,15 @@ endif +## yaml file of the distribution package +## is a link to the latest release of that kind of model variant + +${DIST_YML}: ${MODEL_FINAL} + @${MAKE} ${DIST_PACKAGE} + @${MAKE} ${RELEASE_YML} + @rm -f $@ + @cd ${dir $@} && ln -s $(notdir ${RELEASE_YML}) ${notdir $@} + ## refresh a release with the same time stamp ## in case it is already the newest one @@ -693,6 +611,93 @@ ${EVALTRANSL}: # ${WORKHOME}/eval/%.test.txt: ${MODELSHOME}/%.compare +###################################################################### +## DEPRECATED? +## obsolete now? +###################################################################### + +## get the best model from all kind of alternative setups +## in the following sub directories (add prefix work-) +## scan various work directories - specify alternative dir's below + +ALT_MODEL_BASE = work- +# ALT_MODEL_DIR = bpe-old bpe-memad bpe spm-noalign bpe-align spm +# ALT_MODEL_DIR = spm langid +ALT_MODEL_DIR = langid + +.PHONY: best_dist_all best-dist-all +best-dist-all best_dist_all: + for l in $(sort ${shell ls ${ALT_MODEL_BASE}* | grep -- '-' | grep -v old | grep -v work}); do \ + if [ `find work*/$$l -name '*.npz' | wc -l` -gt 0 ]; then \ + d=`find work-spm/$$l -name '*.best-perplexity.npz' -exec basename {} \; | cut -f1 -d.`; \ + ${MAKE} SRCLANGS="`echo $$l | cut -f1 -d'-' | sed 's/\\+/ /g'`" \ + TRGLANGS="`echo $$l | cut -f2 -d'-' | sed 's/\\+/ /g'`" \ + DATASET=$$d best_dist; \ + fi \ + done + +## find the best model according to test set scores +## and make a distribution package from that model +## (BLEU needs to be above MIN_BLEU_SCORE) +## NEW: don't trust models tested with GNOME test sets! + +## new version of finding the best model +## --> look at different model variants in each work-dir +## --> take only the best one to publish + +.PHONY: best_dist best-dist +best-dist best_dist: + m=0;\ + s=''; \ + echo "------------------------------------------------"; \ + echo "search best model for ${LANGPAIRSTR}"; \ + for d in work ${ALT_MODEL_DIR}; do \ + if [ -e "work-$$d/${LANGPAIRSTR}/test/${TESTSET}.trg" ]; then \ + e=`basename work-$$d/${LANGPAIRSTR}/test/${TESTSET}.trg | sed 's/\.trg$$//'`; \ + else \ + e=`ls work-$$d/${LANGPAIRSTR}/test/*.trg | tail -1 | xargs basename | sed 's/\.trg$$//'`; \ + fi; \ + echo "evaldata = $$e"; \ + if [ "$$e" != "GNOME" ]; then \ + I=`find work-$$d/${LANGPAIRSTR}/ -maxdepth 1 -name "$$e.*.eval" -printf "%f\n"`; \ + for i in $$I; do \ + x=`echo $$i | cut -f3 -d. | cut -f1 -d-`; \ + y=`echo $$i | cut -f3 -d. | cut -f2 -d- | sed 's/[0-9]$$//'`; \ + z=`echo $$i | cut -f2 -d.`; \ + v=`echo $$i | cut -f4 -d.`; \ + if [ `find work-$$d/${LANGPAIRSTR} -name "$$e.$$z.$$x-$$y[0-9].$$v.*.eval" | wc -l ` -gt 0 ]; then \ + b=`grep 'BLEU+' work-$$d/${LANGPAIRSTR}/$$e.$$z.$$x-$$y[0-9].$$v.*.eval | cut -f3 -d' ' | head -1`; \ + if (( $$(echo "$$m-$$b < 0" |bc -l) )); then \ + echo "$$d/$$i ($$b) is better than $$s ($$m)!"; \ + m=$$b; \ + E=$$i; \ + s=$$d; \ + else \ + echo "$$d/$$i ($$b) is worse than $$s ($$m)!"; \ + fi; \ + fi; \ + done; \ + fi \ + done; \ + echo "--------------- best = $$m ($$s/$$E) ---------------------------------"; \ + if [ "$$s" != "" ]; then \ + if (( $$(echo "$$m > ${MIN_BLEU_SCORE}" |bc -l) )); then \ + x=`echo $$E | cut -f3 -d. | cut -f1 -d-`; \ + y=`echo $$E | cut -f3 -d. | cut -f2 -d- | sed 's/[0-9]$$//'`; \ + z=`echo $$E | cut -f2 -d.`; \ + v=`echo $$E | cut -f4 -d.`; \ + ${MAKE} \ + MODELSHOME=${PWD}/models \ + PRE_SRC=$$x PRE_TRG=$$y \ + DATASET=$$z \ + MODELTYPE=$$v \ + MODELS_URL=https://object.pouta.csc.fi/${MODEL_CONTAINER} dist-$$s; \ + fi; \ + fi + + + + ###################################################################### ## misc recipes ... all kind of fixes @@ -911,3 +916,19 @@ dist-fix-preprocess: # fix-yml-files: ${OLDYMLFILES} + + + +## create links for the released yml files + +# link-release-yml: ${ALL_DIST_YML} + +# print-dist-yml: +# echo "${ALL_DIST_YML}" + +# ${ALL_DIST_YML}: +# if [ `ls ${@:.yml=[_-]*.yml} 2>/dev/null | wc -l` -gt 0 ]; then \ +# cd ${dir $@}; \ +# ln -s `ls -t ${notdir ${@:.yml=[_-]*.yml}} | head -1` ${notdir $@}; \ +# fi + diff --git a/lib/env/puhti.mk b/lib/env/puhti.mk index a6f478f7..21c3f49f 100644 --- a/lib/env/puhti.mk +++ b/lib/env/puhti.mk @@ -8,8 +8,8 @@ DATA_PREPARE_HPCPARAMS = CPUJOB_HPC_CORES=2 CPUJOB_HPC_MEM=16g CPUJOB_HPC_DISK=5 DATA_ALIGN_HPCPARAMS = CPUJOB_HPC_CORES=4 CPUJOB_HPC_JOBS=2 CPUJOB_HPC_MEM=64g CPUJOB_HPC_DISK=500 -# CSCPROJECT = project_2002688 -CSCPROJECT = project_2002982 +CSCPROJECT = project_2002688 +# CSCPROJECT = project_2002982 WORKHOME = ${shell realpath ${PWD}/work} GPU = v100 HPC_QUEUE = small diff --git a/lib/projects/elg.mk b/lib/projects/elg.mk index e89f6b76..97aff283 100644 --- a/lib/projects/elg.mk +++ b/lib/projects/elg.mk @@ -49,7 +49,8 @@ elg-release-models: make release-all-improved-models make release-all-improved-models-bt -# for l in dan fin hun nob swe tur; do make STUDENT_DATA=pft SRCLANGS=ukr TRGLANGS=$l release-tiny11-student; done +elg-release-tiny-models: + for l in bul dan deu fin hun nob ron swe tur; do make STUDENT_DATA=pft SRCLANGS=ukr TRGLANGS=$$l release-tiny11-student; done ukreng-train-student: @@ -127,6 +128,24 @@ elg-eval-zle: ${MAKE} tatoeba-$${p}-eval-testsets; \ done +elg-release-zlszle: + for p in zls2zle zle2zls; do \ + ${MAKE} MODELTYPE=transformer-big tatoeba-$${p}-eval-bt; \ + ${MAKE} MODELTYPE=transformer-big tatoeba-$${p}-multieval-bt; \ + ${MAKE} MODELTYPE=transformer-big tatoeba-$${p}-eval-testsets-bt; \ + ${MAKE} MODELTYPE=transformer-big tatoeba-$${p}-dist-bt; \ + done + +elg-release-cesslk2ukr: + ${MAKE} SRCLANGS="ces slk" TRGLANGS=ukr eval-pbt-tatoeba + ${MAKE} SRCLANGS="ces slk" TRGLANGS=ukr tatoeba-multilingual-eval-pbt + ${MAKE} SRCLANGS="ces slk" TRGLANGS=ukr release-pbt-tatoeba + +elg-release-ukr2cesslk: + ${MAKE} TRGLANGS="ces slk" SRCLANGS=ukr eval-pft-tatoeba + ${MAKE} TRGLANGS="ces slk" SRCLANGS=ukr tatoeba-multilingual-eval-pft + ${MAKE} TRGLANGS="ces slk" SRCLANGS=ukr release-pft-tatoeba + elg-eval-big2zle: @@ -575,11 +594,13 @@ ukr-model-table2: # SCORE_BASE_URL = https://github.com/Helsinki-NLP/OPUS-MT-train/blob/master SCORE_BASE_URL = https://github.com/Helsinki-NLP/OPUS-MT-train/blob/puhti + print-ukr2x-table: @echo '| language pair | lang-IDs | BLEU | model |' @echo '|---------------|----------|------|-------|' @grep '^[1-9][0-9]\.' ../scores/ukr-*/flores101-devtest/bleu-scores*txt | \ - sed 's/:/ /' | sort -nr | rev | uniq -f2 | rev| sort > $@.tmp1 + grep -v 'txt:1[0-5]\.' | ${GREP_MODELS} \ + sed 's/:/ /' | sort -nr | rev | uniq -f2 | rev| sort > $@.tmp1 @cut -f3 -d'/' $@.tmp1 > $@.langids @cut -f1 $@.langids | xargs iso639 -p | sed "s/^\"//;s/\"$$//;s#\" \"#\n#g" > $@.langnames @cut -f1 $@.tmp1 | sed 's#^\.\.#${SCORE_BASE_URL}#' > $@.bleufile @@ -597,7 +618,8 @@ print-x2ukr-table: @echo '| language pair | lang-IDs | BLEU | model |' @echo '|---------------|----------|------|-------|' @grep '^[1-9][0-9]\.' ../scores/*-ukr/flores101-devtest/bleu-scores*txt | \ - sed 's/:/ /' | sort -nr | rev | uniq -f2 | rev| sort > $@.tmp1 + grep -v 'txt:1[0-5]\.' | ${GREP_MODELS} \ + sed 's/:/ /' | sort -nr | rev | uniq -f2 | rev| sort > $@.tmp1 @cut -f3 -d'/' $@.tmp1 > $@.langids @cut -f1 $@.langids | xargs iso639 -p | sed "s/^\"//;s/\"$$//;s#\" \"#\n#g" > $@.langnames @cut -f1 $@.tmp1 | sed 's#^\.\.#${SCORE_BASE_URL}#' > $@.bleufile @@ -622,3 +644,44 @@ opus-mt-ukr-flores-devtest.md: echo "## Translations to Ukrainian" >> $@ echo "" >> $@ make -s print-x2ukr-table >> $@ + + +opus-mt-ukr-flores-devtest-tiny.md: + echo "# OPUS-MT models for Ukrainian" > $@ + echo "" >> $@ + echo "The following tables list the best OPUS-MT models for translating from and to Ukrainian according to the flores101 devtest benchmark. Results are given in standard BLEU scores (using sacrebleu)." >> $@ + echo "" >> $@ + echo "## Translations from Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep 'tiny' |" print-ukr2x-table >> $@ + echo "" >> $@ + echo "## Translations to Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep 'tiny' |" print-x2ukr-table >> $@ + + +opus-mt-ukr-flores-devtest-big.md: + echo "# OPUS-MT models for Ukrainian" > $@ + echo "" >> $@ + echo "The following tables list the best OPUS-MT models for translating from and to Ukrainian according to the flores101 devtest benchmark. Results are given in standard BLEU scores (using sacrebleu)." >> $@ + echo "" >> $@ + echo "## Translations from Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep 'transformer-big' |" print-ukr2x-table >> $@ + echo "" >> $@ + echo "## Translations to Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep 'transformer-big' |" print-x2ukr-table >> $@ + +opus-mt-ukr-flores-devtest-base.md: + echo "# OPUS-MT models for Ukrainian" > $@ + echo "" >> $@ + echo "The following tables list the best OPUS-MT models for translating from and to Ukrainian according to the flores101 devtest benchmark. Results are given in standard BLEU scores (using sacrebleu)." >> $@ + echo "" >> $@ + echo "## Translations from Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep -v 'transformer-big' | grep -v 'tiny' |" print-ukr2x-table >> $@ + echo "" >> $@ + echo "## Translations to Ukrainian" >> $@ + echo "" >> $@ + make -s GREP_MODELS="grep -v 'transformer-big' | grep -v 'tiny' |" print-x2ukr-table >> $@ diff --git a/scores/bel-bul/flores101-dev/bleu-scores.txt b/scores/bel-bul/flores101-dev/bleu-scores.txt index 2125d250..4ad2dc12 100644 --- a/scores/bel-bul/flores101-dev/bleu-scores.txt +++ b/scores/bel-bul/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 12.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 12.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 12.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bel-bul/flores101-dev/chrf-scores.txt b/scores/bel-bul/flores101-dev/chrf-scores.txt index 238895d8..16006490 100644 --- a/scores/bel-bul/flores101-dev/chrf-scores.txt +++ b/scores/bel-bul/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49267 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.456 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.450 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-bul/flores101-devtest/bleu-scores.txt b/scores/bel-bul/flores101-devtest/bleu-scores.txt index 64d40915..af91a914 100644 --- a/scores/bel-bul/flores101-devtest/bleu-scores.txt +++ b/scores/bel-bul/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 13.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 13.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 13.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bel-bul/flores101-devtest/chrf-scores.txt b/scores/bel-bul/flores101-devtest/chrf-scores.txt index bda6f9cb..622e4fbe 100644 --- a/scores/bel-bul/flores101-devtest/chrf-scores.txt +++ b/scores/bel-bul/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49602 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.454 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.450 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bel-dan/flores101-dev/bleu-scores.txt b/scores/bel-dan/flores101-dev/bleu-scores.txt index bc9da44f..fdbcff0c 100644 --- a/scores/bel-dan/flores101-dev/bleu-scores.txt +++ b/scores/bel-dan/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +14.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 8.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 7.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-dan/flores101-dev/chrf-scores.txt b/scores/bel-dan/flores101-dev/chrf-scores.txt index 494581fb..a2535e57 100644 --- a/scores/bel-dan/flores101-dev/chrf-scores.txt +++ b/scores/bel-dan/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.47553 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.375 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.367 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-dan/flores101-devtest/bleu-scores.txt b/scores/bel-dan/flores101-devtest/bleu-scores.txt index 19ab15da..4a051739 100644 --- a/scores/bel-dan/flores101-devtest/bleu-scores.txt +++ b/scores/bel-dan/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +13.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 7.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 7.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-dan/flores101-devtest/chrf-scores.txt b/scores/bel-dan/flores101-devtest/chrf-scores.txt index 511f1644..6ef2eebd 100644 --- a/scores/bel-dan/flores101-devtest/chrf-scores.txt +++ b/scores/bel-dan/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.47621 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.372 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-eng/flores101-dev/bleu-scores.txt b/scores/bel-eng/flores101-dev/bleu-scores.txt index eab106f1..b2e449b7 100644 --- a/scores/bel-eng/flores101-dev/bleu-scores.txt +++ b/scores/bel-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +18.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 17.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/bel-eng/opus+bt-2021-04-30.zip 13.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/flores101-dev/chrf-scores.txt b/scores/bel-eng/flores101-dev/chrf-scores.txt index c39efd97..76617b9b 100644 --- a/scores/bel-eng/flores101-dev/chrf-scores.txt +++ b/scores/bel-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52003 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.51962 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.493 https://object.pouta.csc.fi/Tatoeba-MT-models/bel-eng/opus+bt-2021-04-30.zip 0.488 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip diff --git a/scores/bel-eng/flores101-devtest/bleu-scores.txt b/scores/bel-eng/flores101-devtest/bleu-scores.txt index 7117b6fb..fe240d95 100644 --- a/scores/bel-eng/flores101-devtest/bleu-scores.txt +++ b/scores/bel-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +18.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 18.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 15.5 https://object.pouta.csc.fi/Tatoeba-MT-models/bel-eng/opus+bt-2021-04-30.zip 15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip diff --git a/scores/bel-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/bel-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 779ce46f..2ad732d3 100644 --- a/scores/bel-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +48.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 48.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/bel-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 843d8ec4..f16ddec0 100644 --- a/scores/bel-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65221 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.65132 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.620 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 0.609 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/bel-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 779ce46f..2ad732d3 100644 --- a/scores/bel-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +48.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 48.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/bel-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 843d8ec4..f16ddec0 100644 --- a/scores/bel-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65221 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.65132 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.620 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 0.609 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/bel-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 5b5ed9fc..e53a1491 100644 --- a/scores/bel-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +48.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 48.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 43.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/bel-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 843d8ec4..f16ddec0 100644 --- a/scores/bel-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/bel-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65221 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.65132 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.620 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opus1m+bt-2021-05-02.zip 0.609 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bel-hrv/flores101-dev/bleu-scores.txt b/scores/bel-hrv/flores101-dev/bleu-scores.txt index 64987f24..69099415 100644 --- a/scores/bel-hrv/flores101-dev/bleu-scores.txt +++ b/scores/bel-hrv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +11.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 9.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 9.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 8.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bel-hrv/flores101-dev/chrf-scores.txt b/scores/bel-hrv/flores101-dev/chrf-scores.txt index b28fdb3d..0e44f98b 100644 --- a/scores/bel-hrv/flores101-dev/chrf-scores.txt +++ b/scores/bel-hrv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.45861 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.414 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.412 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.403 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bel-hrv/flores101-devtest/bleu-scores.txt b/scores/bel-hrv/flores101-devtest/bleu-scores.txt index 3aa78f21..270a387f 100644 --- a/scores/bel-hrv/flores101-devtest/bleu-scores.txt +++ b/scores/bel-hrv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +12.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 9.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 8.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bel-hrv/flores101-devtest/chrf-scores.txt b/scores/bel-hrv/flores101-devtest/chrf-scores.txt index ef7e073a..65bfd7bf 100644 --- a/scores/bel-hrv/flores101-devtest/chrf-scores.txt +++ b/scores/bel-hrv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.46311 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.415 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.412 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.406 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bel-isl/flores101-dev/bleu-scores.txt b/scores/bel-isl/flores101-dev/bleu-scores.txt index 488a5e3f..36072555 100644 --- a/scores/bel-isl/flores101-dev/bleu-scores.txt +++ b/scores/bel-isl/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ 3.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +2.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/bel-isl/flores101-dev/chrf-scores.txt b/scores/bel-isl/flores101-dev/chrf-scores.txt index 8834dda3..e5e9582e 100644 --- a/scores/bel-isl/flores101-dev/chrf-scores.txt +++ b/scores/bel-isl/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ 0.272 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.266 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.25300 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/bel-isl/flores101-devtest/bleu-scores.txt b/scores/bel-isl/flores101-devtest/bleu-scores.txt index 4eb7f19f..a8e300b2 100644 --- a/scores/bel-isl/flores101-devtest/bleu-scores.txt +++ b/scores/bel-isl/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ 3.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +2.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/bel-isl/flores101-devtest/chrf-scores.txt b/scores/bel-isl/flores101-devtest/chrf-scores.txt index 8aa7bff6..40253a7d 100644 --- a/scores/bel-isl/flores101-devtest/chrf-scores.txt +++ b/scores/bel-isl/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ 0.268 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.263 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.24826 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/bel-mkd/flores101-dev/bleu-scores.txt b/scores/bel-mkd/flores101-dev/bleu-scores.txt index 76d4df1e..0b3dfa0d 100644 --- a/scores/bel-mkd/flores101-dev/bleu-scores.txt +++ b/scores/bel-mkd/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +12.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 10.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 10.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 10.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-mkd/flores101-dev/chrf-scores.txt b/scores/bel-mkd/flores101-dev/chrf-scores.txt index dca38a5b..2633b7ef 100644 --- a/scores/bel-mkd/flores101-dev/chrf-scores.txt +++ b/scores/bel-mkd/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.47668 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.442 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.438 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bel-mkd/flores101-devtest/bleu-scores.txt b/scores/bel-mkd/flores101-devtest/bleu-scores.txt index 16d7d697..3fa1a8b0 100644 --- a/scores/bel-mkd/flores101-devtest/bleu-scores.txt +++ b/scores/bel-mkd/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +13.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 11.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 11.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 11.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-mkd/flores101-devtest/chrf-scores.txt b/scores/bel-mkd/flores101-devtest/chrf-scores.txt index 9c741795..2202539f 100644 --- a/scores/bel-mkd/flores101-devtest/chrf-scores.txt +++ b/scores/bel-mkd/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.48423 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.446 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.441 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bel-nob/flores101-dev/bleu-scores.txt b/scores/bel-nob/flores101-dev/bleu-scores.txt index 2e973456..ab5b1bc0 100644 --- a/scores/bel-nob/flores101-dev/bleu-scores.txt +++ b/scores/bel-nob/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +11.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 6.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-nob/flores101-dev/chrf-scores.txt b/scores/bel-nob/flores101-dev/chrf-scores.txt index d189d6f6..fb0ce54f 100644 --- a/scores/bel-nob/flores101-dev/chrf-scores.txt +++ b/scores/bel-nob/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.44469 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.355 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.348 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-nob/flores101-devtest/bleu-scores.txt b/scores/bel-nob/flores101-devtest/bleu-scores.txt index 694d3fc8..26c5db27 100644 --- a/scores/bel-nob/flores101-devtest/bleu-scores.txt +++ b/scores/bel-nob/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +10.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 6.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-nob/flores101-devtest/chrf-scores.txt b/scores/bel-nob/flores101-devtest/chrf-scores.txt index f1ac2280..b30395a9 100644 --- a/scores/bel-nob/flores101-devtest/chrf-scores.txt +++ b/scores/bel-nob/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.44966 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.352 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.349 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-slv/flores101-dev/bleu-scores.txt b/scores/bel-slv/flores101-dev/bleu-scores.txt index 4204d439..aad3b847 100644 --- a/scores/bel-slv/flores101-dev/bleu-scores.txt +++ b/scores/bel-slv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +12.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 9.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 9.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 9.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-slv/flores101-dev/chrf-scores.txt b/scores/bel-slv/flores101-dev/chrf-scores.txt index 2f7d1ed0..7c2ee671 100644 --- a/scores/bel-slv/flores101-dev/chrf-scores.txt +++ b/scores/bel-slv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.44810 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.403 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.402 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.400 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-slv/flores101-devtest/bleu-scores.txt b/scores/bel-slv/flores101-devtest/bleu-scores.txt index 9336b51b..52545838 100644 --- a/scores/bel-slv/flores101-devtest/bleu-scores.txt +++ b/scores/bel-slv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +12.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 9.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 9.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-slv/flores101-devtest/chrf-scores.txt b/scores/bel-slv/flores101-devtest/chrf-scores.txt index f6ec39e1..1c1745c4 100644 --- a/scores/bel-slv/flores101-devtest/chrf-scores.txt +++ b/scores/bel-slv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.44519 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.399 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.398 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.393 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bel-swe/flores101-dev/bleu-scores.txt b/scores/bel-swe/flores101-dev/bleu-scores.txt index 34e4a2c9..bce2acb5 100644 --- a/scores/bel-swe/flores101-dev/bleu-scores.txt +++ b/scores/bel-swe/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +13.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 6.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 6.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-swe/flores101-dev/chrf-scores.txt b/scores/bel-swe/flores101-dev/chrf-scores.txt index 8b9a0b09..bec8121b 100644 --- a/scores/bel-swe/flores101-dev/chrf-scores.txt +++ b/scores/bel-swe/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.47015 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.357 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-swe/flores101-devtest/bleu-scores.txt b/scores/bel-swe/flores101-devtest/bleu-scores.txt index a867017f..54156be7 100644 --- a/scores/bel-swe/flores101-devtest/bleu-scores.txt +++ b/scores/bel-swe/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +13.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 6.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 6.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bel-swe/flores101-devtest/chrf-scores.txt b/scores/bel-swe/flores101-devtest/chrf-scores.txt index b877d0f4..1186162a 100644 --- a/scores/bel-swe/flores101-devtest/chrf-scores.txt +++ b/scores/bel-swe/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.47274 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.360 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.355 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bos_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/bos_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 39614610..f5bc0a8c 100644 --- a/scores/bos_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/bos_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.80135 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip +0.79462 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.769 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.758 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.755 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bos_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/bos_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 39614610..f5bc0a8c 100644 --- a/scores/bos_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/bos_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.80135 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip +0.79462 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.769 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.758 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.755 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bos_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/bos_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 0690c327..09d1b964 100644 --- a/scores/bos_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/bos_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.80010 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip +0.79339 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.768 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.757 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.754 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-bel/flores101-dev/bleu-scores.txt b/scores/bul-bel/flores101-dev/bleu-scores.txt index ec6c87f1..93c3e877 100644 --- a/scores/bul-bel/flores101-dev/bleu-scores.txt +++ b/scores/bul-bel/flores101-dev/bleu-scores.txt @@ -1,5 +1,6 @@ 5.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 5.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 5.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip +5.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 4.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 4.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bul-bel/flores101-dev/chrf-scores.txt b/scores/bul-bel/flores101-dev/chrf-scores.txt index c634c1dd..85f27cc9 100644 --- a/scores/bul-bel/flores101-dev/chrf-scores.txt +++ b/scores/bul-bel/flores101-dev/chrf-scores.txt @@ -4,3 +4,4 @@ 0.327 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.311 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.306 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.26226 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip diff --git a/scores/bul-bel/flores101-devtest/bleu-scores.txt b/scores/bul-bel/flores101-devtest/bleu-scores.txt index d6b04a65..f3dd8d9e 100644 --- a/scores/bul-bel/flores101-devtest/bleu-scores.txt +++ b/scores/bul-bel/flores101-devtest/bleu-scores.txt @@ -2,5 +2,6 @@ 6.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 6.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 6.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +5.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 4.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 4.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/bul-bel/flores101-devtest/chrf-scores.txt b/scores/bul-bel/flores101-devtest/chrf-scores.txt index 4a57f74b..6237e1b6 100644 --- a/scores/bul-bel/flores101-devtest/chrf-scores.txt +++ b/scores/bul-bel/flores101-devtest/chrf-scores.txt @@ -4,3 +4,4 @@ 0.337 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.316 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.313 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.26042 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip diff --git a/scores/bul-eng/flores101-dev/bleu-scores.txt b/scores/bul-eng/flores101-dev/bleu-scores.txt index 9d3bb4ec..104f7a69 100644 --- a/scores/bul-eng/flores101-dev/bleu-scores.txt +++ b/scores/bul-eng/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 44.1 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +43.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 38.2 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 38.1 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2021-02-18.zip 37.8 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip diff --git a/scores/bul-eng/flores101-dev/chrf-scores.txt b/scores/bul-eng/flores101-dev/chrf-scores.txt index f97e6b7e..795dbfe2 100644 --- a/scores/bul-eng/flores101-dev/chrf-scores.txt +++ b/scores/bul-eng/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.68735 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +0.68294 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 0.650 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2021-02-18.zip 0.649 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip diff --git a/scores/bul-eng/flores101-devtest/bleu-scores.txt b/scores/bul-eng/flores101-devtest/bleu-scores.txt index 0ff2128b..0d37c0c2 100644 --- a/scores/bul-eng/flores101-devtest/bleu-scores.txt +++ b/scores/bul-eng/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 42.9 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +42.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 37.0 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2021-02-18.zip 36.4 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 35.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/bul-eng/flores101-devtest/chrf-scores.txt b/scores/bul-eng/flores101-devtest/chrf-scores.txt index 28cd0187..a4f2345b 100644 --- a/scores/bul-eng/flores101-devtest/chrf-scores.txt +++ b/scores/bul-eng/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.67938 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +0.67375 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.645 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 0.643 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2021-02-18.zip 0.639 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip diff --git a/scores/bul-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/bul-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 17c74e4b..eb5a0217 100644 --- a/scores/bul-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ 60.5 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +59.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 55.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip diff --git a/scores/bul-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/bul-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 8f30b843..1fc61731 100644 --- a/scores/bul-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.73687 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +0.72662 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.721 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 0.696 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bul-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/bul-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 17c74e4b..eb5a0217 100644 --- a/scores/bul-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ 60.5 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +59.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 55.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip diff --git a/scores/bul-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/bul-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 8f30b843..1fc61731 100644 --- a/scores/bul-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.73687 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +0.72662 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.721 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 0.696 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/bul-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/bul-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 7641d1e8..72fb8e09 100644 --- a/scores/bul-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 60.5 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +59.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 57.8 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 55.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip diff --git a/scores/bul-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/bul-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 210f358b..4e6fcddd 100644 --- a/scores/bul-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/bul-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.73687 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opusTCv20210807+bt_transformer-big_2022-03-09.zip +0.72656 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.721 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus-2020-07-03.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-eng/opus+bt-2021-04-30.zip 0.696 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/bul-rus/flores101-dev/bleu-scores.txt b/scores/bul-rus/flores101-dev/bleu-scores.txt index 30223c34..0d8f66bc 100644 --- a/scores/bul-rus/flores101-dev/bleu-scores.txt +++ b/scores/bul-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 19.4 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 16.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 16.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-rus/flores101-dev/chrf-scores.txt b/scores/bul-rus/flores101-dev/chrf-scores.txt index 84199d5e..e5220622 100644 --- a/scores/bul-rus/flores101-dev/chrf-scores.txt +++ b/scores/bul-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53662 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.488 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 0.460 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.459 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bul-rus/flores101-devtest/bleu-scores.txt b/scores/bul-rus/flores101-devtest/bleu-scores.txt index 50b51fe3..7270f498 100644 --- a/scores/bul-rus/flores101-devtest/bleu-scores.txt +++ b/scores/bul-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +24.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 19.8 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 16.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 16.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bul-rus/flores101-devtest/chrf-scores.txt b/scores/bul-rus/flores101-devtest/chrf-scores.txt index aa175337..7901b7eb 100644 --- a/scores/bul-rus/flores101-devtest/chrf-scores.txt +++ b/scores/bul-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53987 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 0.469 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.468 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bul-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/bul-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index a3e6bf5c..89582277 100644 --- a/scores/bul-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 48.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 43.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bul-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/bul-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 6e63202b..3d07a695 100644 --- a/scores/bul-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71561 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.650 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/bul-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index a3e6bf5c..89582277 100644 --- a/scores/bul-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 48.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 43.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bul-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/bul-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index 6e63202b..3d07a695 100644 --- a/scores/bul-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71561 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.650 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/bul-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index a3e6bf5c..89582277 100644 --- a/scores/bul-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 48.3 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 43.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/bul-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/bul-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 6e63202b..3d07a695 100644 --- a/scores/bul-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/bul-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71561 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-rus/opus-2020-07-03.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.650 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/flores101-dev/bleu-scores.txt b/scores/bul-ukr/flores101-dev/bleu-scores.txt index 0ae96a99..bacc1d09 100644 --- a/scores/bul-ukr/flores101-dev/bleu-scores.txt +++ b/scores/bul-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +22.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 15.4 https://object.pouta.csc.fi/Tatoeba-MT-models/bul-ukr/opus-2021-02-18.zip 15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 15.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/bul-ukr/flores101-dev/chrf-scores.txt b/scores/bul-ukr/flores101-dev/chrf-scores.txt index 363004cb..91af2665 100644 --- a/scores/bul-ukr/flores101-dev/chrf-scores.txt +++ b/scores/bul-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52998 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.460 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.459 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.457 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/bul-ukr/flores101-devtest/bleu-scores.txt b/scores/bul-ukr/flores101-devtest/bleu-scores.txt index d8fe1619..07e23bcf 100644 --- a/scores/bul-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/bul-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +22.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 15.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/flores101-devtest/chrf-scores.txt b/scores/bul-ukr/flores101-devtest/chrf-scores.txt index f87f5d5c..3936c80c 100644 --- a/scores/bul-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/bul-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53464 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.465 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.464 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.461 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/bul-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 192e5f10..e8145dd0 100644 --- a/scores/bul-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +53.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 50.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/bul-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index e0c33443..51064b9c 100644 --- a/scores/bul-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71176 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.691 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/bul-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index a44b4371..958c88a3 100644 --- a/scores/bul-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 50.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/bul-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 6d37ff23..45cf014e 100644 --- a/scores/bul-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71219 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.691 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/bul-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index 192e5f10..e8145dd0 100644 --- a/scores/bul-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +53.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 50.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/bul-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/bul-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index e0c33443..51064b9c 100644 --- a/scores/bul-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/bul-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71176 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.691 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ces-eng/flores101-dev/bleu-scores.txt b/scores/ces-eng/flores101-dev/bleu-scores.txt index 6c58db76..16ab9195 100644 --- a/scores/ces-eng/flores101-dev/bleu-scores.txt +++ b/scores/ces-eng/flores101-dev/bleu-scores.txt @@ -1,4 +1,6 @@ +40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 40.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +39.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 35.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 35.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 33.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/ces-eng/flores101-dev/chrf-scores.txt b/scores/ces-eng/flores101-dev/chrf-scores.txt index c85e8c2e..aa6f28f8 100644 --- a/scores/ces-eng/flores101-dev/chrf-scores.txt +++ b/scores/ces-eng/flores101-dev/chrf-scores.txt @@ -1,4 +1,6 @@ 0.65726 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.65704 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +0.65682 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.628 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.624 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.613 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/ces-eng/flores101-devtest/bleu-scores.txt b/scores/ces-eng/flores101-devtest/bleu-scores.txt index 01dcc36e..fc7fd660 100644 --- a/scores/ces-eng/flores101-devtest/bleu-scores.txt +++ b/scores/ces-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +41.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 40.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 35.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 35.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/flores101-devtest/chrf-scores.txt b/scores/ces-eng/flores101-devtest/chrf-scores.txt index 5e331bfc..2c6f3814 100644 --- a/scores/ces-eng/flores101-devtest/chrf-scores.txt +++ b/scores/ces-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,5 @@ +0.66511 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +0.66444 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.66413 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.632 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.628 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/multi30k_test_2016_flickr/bleu-scores.txt b/scores/ces-eng/multi30k_test_2016_flickr/bleu-scores.txt index 9d36c45f..9b8b0311 100644 --- a/scores/ces-eng/multi30k_test_2016_flickr/bleu-scores.txt +++ b/scores/ces-eng/multi30k_test_2016_flickr/bleu-scores.txt @@ -1,4 +1,5 @@ -38.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +38.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 35.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 35.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 35.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip diff --git a/scores/ces-eng/multi30k_test_2016_flickr/chrf-scores.txt b/scores/ces-eng/multi30k_test_2016_flickr/chrf-scores.txt index 7e115762..91f52a27 100644 --- a/scores/ces-eng/multi30k_test_2016_flickr/chrf-scores.txt +++ b/scores/ces-eng/multi30k_test_2016_flickr/chrf-scores.txt @@ -1,4 +1,6 @@ +0.62216 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.62143 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.61482 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.602 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.601 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.598 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip diff --git a/scores/ces-eng/multi30k_test_2018_flickr/bleu-scores.txt b/scores/ces-eng/multi30k_test_2018_flickr/bleu-scores.txt index a27b9115..2c45297a 100644 --- a/scores/ces-eng/multi30k_test_2018_flickr/bleu-scores.txt +++ b/scores/ces-eng/multi30k_test_2018_flickr/bleu-scores.txt @@ -1,4 +1,6 @@ +37.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 37.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +37.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 35.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 35.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 35.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip diff --git a/scores/ces-eng/multi30k_test_2018_flickr/chrf-scores.txt b/scores/ces-eng/multi30k_test_2018_flickr/chrf-scores.txt index bfb32783..6ef55fd8 100644 --- a/scores/ces-eng/multi30k_test_2018_flickr/chrf-scores.txt +++ b/scores/ces-eng/multi30k_test_2018_flickr/chrf-scores.txt @@ -1,4 +1,6 @@ +0.61838 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.61636 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.61405 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.599 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.598 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.574 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newssyscomb2009/bleu-scores.txt b/scores/ces-eng/newssyscomb2009/bleu-scores.txt index 9e138b17..d9c0e191 100644 --- a/scores/ces-eng/newssyscomb2009/bleu-scores.txt +++ b/scores/ces-eng/newssyscomb2009/bleu-scores.txt @@ -1,3 +1,5 @@ +30.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +29.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 29.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 27.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 27.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/newssyscomb2009/chrf-scores.txt b/scores/ces-eng/newssyscomb2009/chrf-scores.txt index a22b5d25..8c7b6075 100644 --- a/scores/ces-eng/newssyscomb2009/chrf-scores.txt +++ b/scores/ces-eng/newssyscomb2009/chrf-scores.txt @@ -1,3 +1,5 @@ +0.56495 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +0.56380 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.56280 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.553 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.552 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/newstest2009/bleu-scores.txt b/scores/ces-eng/newstest2009/bleu-scores.txt index 38b62bc9..7e3e9598 100644 --- a/scores/ces-eng/newstest2009/bleu-scores.txt +++ b/scores/ces-eng/newstest2009/bleu-scores.txt @@ -1,4 +1,6 @@ +29.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 28.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +28.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 27.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 26.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 25.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newstest2009/chrf-scores.txt b/scores/ces-eng/newstest2009/chrf-scores.txt index f0250e73..8a55dd22 100644 --- a/scores/ces-eng/newstest2009/chrf-scores.txt +++ b/scores/ces-eng/newstest2009/chrf-scores.txt @@ -1,4 +1,6 @@ +0.56309 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.55872 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.55871 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.549 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.548 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.540 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newstest2010/bleu-scores.txt b/scores/ces-eng/newstest2010/bleu-scores.txt index b0e5c2a8..23ad8340 100644 --- a/scores/ces-eng/newstest2010/bleu-scores.txt +++ b/scores/ces-eng/newstest2010/bleu-scores.txt @@ -1,3 +1,5 @@ +30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +30.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 30.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 27.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 27.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/newstest2010/chrf-scores.txt b/scores/ces-eng/newstest2010/chrf-scores.txt index ce49c1e0..78c8251d 100644 --- a/scores/ces-eng/newstest2010/chrf-scores.txt +++ b/scores/ces-eng/newstest2010/chrf-scores.txt @@ -1,4 +1,6 @@ +0.57778 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.57664 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.57634 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.559 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.558 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.547 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newstest2011/bleu-scores.txt b/scores/ces-eng/newstest2011/bleu-scores.txt index 15815dba..1d4859a4 100644 --- a/scores/ces-eng/newstest2011/bleu-scores.txt +++ b/scores/ces-eng/newstest2011/bleu-scores.txt @@ -1,4 +1,5 @@ -30.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +30.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +30.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 27.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 26.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newstest2011/chrf-scores.txt b/scores/ces-eng/newstest2011/chrf-scores.txt index 99686415..031dd528 100644 --- a/scores/ces-eng/newstest2011/chrf-scores.txt +++ b/scores/ces-eng/newstest2011/chrf-scores.txt @@ -1,3 +1,5 @@ +0.57336 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +0.57002 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.56974 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.556 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.555 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip diff --git a/scores/ces-eng/newstest2012/bleu-scores.txt b/scores/ces-eng/newstest2012/bleu-scores.txt index 7eed08a1..9a596609 100644 --- a/scores/ces-eng/newstest2012/bleu-scores.txt +++ b/scores/ces-eng/newstest2012/bleu-scores.txt @@ -1,4 +1,4 @@ -29.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +29.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 27.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 27.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 26.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip diff --git a/scores/ces-eng/newstest2012/chrf-scores.txt b/scores/ces-eng/newstest2012/chrf-scores.txt index d85f2a62..160d809f 100644 --- a/scores/ces-eng/newstest2012/chrf-scores.txt +++ b/scores/ces-eng/newstest2012/chrf-scores.txt @@ -1,4 +1,6 @@ +0.56761 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.56582 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.56564 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.552 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.550 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.540 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/newstest2013/bleu-scores.txt b/scores/ces-eng/newstest2013/bleu-scores.txt index 7f1ddce9..03040bb4 100644 --- a/scores/ces-eng/newstest2013/bleu-scores.txt +++ b/scores/ces-eng/newstest2013/bleu-scores.txt @@ -1,4 +1,5 @@ -33.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +33.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +32.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 30.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 30.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 30.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip diff --git a/scores/ces-eng/newstest2013/chrf-scores.txt b/scores/ces-eng/newstest2013/chrf-scores.txt index b6fe96db..3d670714 100644 --- a/scores/ces-eng/newstest2013/chrf-scores.txt +++ b/scores/ces-eng/newstest2013/chrf-scores.txt @@ -1,4 +1,6 @@ +0.58809 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.58778 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.58723 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.571 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.569 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.558 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ces-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index c6f67f8a..393a57d8 100644 --- a/scores/ces-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ -58.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +58.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 56.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ces-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 2860b9ad..f316bd05 100644 --- a/scores/ces-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,6 @@ +0.72914 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72898 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.72722 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.718 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.699 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ces-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 6d125dce..5caeaf8f 100644 --- a/scores/ces-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ -58.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +58.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +57.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 56.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ces-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index ba94e069..affe96bb 100644 --- a/scores/ces-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,6 @@ +0.72430 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72413 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.72179 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-02-19.zip 0.713 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.694 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ces-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 23c256da..36556018 100644 --- a/scores/ces-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ -57.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +57.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 53.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ces-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 9e8ed0f4..a4621494 100644 --- a/scores/ces-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ces-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,6 @@ +0.72120 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72108 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.71861 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.710 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus-2021-01-03.zip 0.709 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-eng/opus+bt-2021-04-30.zip 0.690 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/ces-slk/flores101-dev/bleu-scores.txt b/scores/ces-slk/flores101-dev/bleu-scores.txt index abb21d20..44b0fafd 100644 --- a/scores/ces-slk/flores101-dev/bleu-scores.txt +++ b/scores/ces-slk/flores101-dev/bleu-scores.txt @@ -1 +1,2 @@ 2.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip +1.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip diff --git a/scores/ces-slk/flores101-dev/chrf-scores.txt b/scores/ces-slk/flores101-dev/chrf-scores.txt index 3eae1b6d..1fbaef9e 100644 --- a/scores/ces-slk/flores101-dev/chrf-scores.txt +++ b/scores/ces-slk/flores101-dev/chrf-scores.txt @@ -1 +1,2 @@ +1.756 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.231 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ces-slk/flores101-devtest/bleu-scores.txt b/scores/ces-slk/flores101-devtest/bleu-scores.txt index de2cf25b..49b3c960 100644 --- a/scores/ces-slk/flores101-devtest/bleu-scores.txt +++ b/scores/ces-slk/flores101-devtest/bleu-scores.txt @@ -1 +1,2 @@ 2.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip +0.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip diff --git a/scores/ces-slk/flores101-devtest/chrf-scores.txt b/scores/ces-slk/flores101-devtest/chrf-scores.txt index 29fc473a..e26763e6 100644 --- a/scores/ces-slk/flores101-devtest/chrf-scores.txt +++ b/scores/ces-slk/flores101-devtest/chrf-scores.txt @@ -1 +1,2 @@ +1.267 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.227 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ces-ukr/flores101-dev/bleu-scores.txt b/scores/ces-ukr/flores101-dev/bleu-scores.txt index bface923..60fd9fd9 100644 --- a/scores/ces-ukr/flores101-dev/bleu-scores.txt +++ b/scores/ces-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 20.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-zle/opusTCv20210807+bt_transformer-big_2022-03-07.zip 14.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip diff --git a/scores/ces-ukr/flores101-dev/chrf-scores.txt b/scores/ces-ukr/flores101-dev/chrf-scores.txt index c8bae6b7..f4614332 100644 --- a/scores/ces-ukr/flores101-dev/chrf-scores.txt +++ b/scores/ces-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.51170 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.50280 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 0.50264 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-zle/opusTCv20210807+bt_transformer-big_2022-03-07.zip 0.429 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ces-ukr/flores101-devtest/bleu-scores.txt b/scores/ces-ukr/flores101-devtest/bleu-scores.txt index 50b0d778..d76a534f 100644 --- a/scores/ces-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/ces-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +22.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-zle/opusTCv20210807+bt_transformer-big_2022-03-07.zip 21.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 14.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ces-ukr/flores101-devtest/chrf-scores.txt b/scores/ces-ukr/flores101-devtest/chrf-scores.txt index c0ec16aa..de5e436a 100644 --- a/scores/ces-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/ces-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52034 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.51447 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-zle/opusTCv20210807+bt_transformer-big_2022-03-07.zip 0.51387 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 0.438 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ces-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ces-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 44be8981..151afa61 100644 --- a/scores/ces-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -4,6 +4,7 @@ 51.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 51.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip +49.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 34.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 32.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ces-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ces-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index c65bb0fe..99c5cfbc 100644 --- a/scores/ces-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -3,6 +3,7 @@ 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip 0.678 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +0.67687 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.66867 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.503 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ces-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ces-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index 44be8981..151afa61 100644 --- a/scores/ces-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -4,6 +4,7 @@ 51.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 51.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip +49.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 34.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 32.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ces-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ces-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index c65bb0fe..99c5cfbc 100644 --- a/scores/ces-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -3,6 +3,7 @@ 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip 0.678 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +0.67687 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.66867 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.503 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ces-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ces-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index 7ea0e63b..c820b5a0 100644 --- a/scores/ces-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -4,6 +4,7 @@ 51.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 51.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip +49.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 34.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 32.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ces-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ces-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 0719db82..fc3eb0a8 100644 --- a/scores/ces-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ces-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -3,6 +3,7 @@ 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/ces-ukr/opus-2021-02-18.zip 0.678 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +0.67687 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-16.zip 0.66867 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-ukr/opusTCv20210807+pbt_transformer-align_2022-03-08.zip 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.503 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-bel/flores101-dev/bleu-scores.txt b/scores/dan-bel/flores101-dev/bleu-scores.txt index d6837b2b..cfd53eb6 100644 --- a/scores/dan-bel/flores101-dev/bleu-scores.txt +++ b/scores/dan-bel/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 4.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 4.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-bel/flores101-dev/chrf-scores.txt b/scores/dan-bel/flores101-dev/chrf-scores.txt index 6d44f05c..36e5728c 100644 --- a/scores/dan-bel/flores101-dev/chrf-scores.txt +++ b/scores/dan-bel/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.38571 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.301 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.296 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-bel/flores101-devtest/bleu-scores.txt b/scores/dan-bel/flores101-devtest/bleu-scores.txt index 8d53a782..98fc015f 100644 --- a/scores/dan-bel/flores101-devtest/bleu-scores.txt +++ b/scores/dan-bel/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +9.5 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 4.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 4.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-bel/flores101-devtest/chrf-scores.txt b/scores/dan-bel/flores101-devtest/chrf-scores.txt index 9fd7db95..41d473a9 100644 --- a/scores/dan-bel/flores101-devtest/chrf-scores.txt +++ b/scores/dan-bel/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.39215 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.298 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.294 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/flores101-dev/bleu-scores.txt b/scores/dan-rus/flores101-dev/bleu-scores.txt index 8a60be62..dad04cfe 100644 --- a/scores/dan-rus/flores101-dev/bleu-scores.txt +++ b/scores/dan-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +25.5 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 18.1 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 11.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 10.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/flores101-dev/chrf-scores.txt b/scores/dan-rus/flores101-dev/chrf-scores.txt index 8f392c58..c8e11537 100644 --- a/scores/dan-rus/flores101-dev/chrf-scores.txt +++ b/scores/dan-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52954 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 0.378 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.370 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/flores101-devtest/bleu-scores.txt b/scores/dan-rus/flores101-devtest/bleu-scores.txt index d7d575ae..26329753 100644 --- a/scores/dan-rus/flores101-devtest/bleu-scores.txt +++ b/scores/dan-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +25.0 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 10.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/flores101-devtest/chrf-scores.txt b/scores/dan-rus/flores101-devtest/chrf-scores.txt index 3daee000..2280b9a2 100644 --- a/scores/dan-rus/flores101-devtest/chrf-scores.txt +++ b/scores/dan-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52847 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.451 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 0.374 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.365 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/dan-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 4072f7aa..a5850839 100644 --- a/scores/dan-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 52.7 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 30.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/dan-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index aaeb424d..6f8b8d0b 100644 --- a/scores/dan-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72627 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 0.518 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.506 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/dan-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 4072f7aa..a5850839 100644 --- a/scores/dan-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 52.7 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 30.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/dan-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index aaeb424d..6f8b8d0b 100644 --- a/scores/dan-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72627 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 0.518 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.506 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/dan-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index 98b123c7..6fc6ad31 100644 --- a/scores/dan-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 52.6 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 30.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/dan-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index aaeb424d..6f8b8d0b 100644 --- a/scores/dan-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/dan-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72627 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-rus/opus-2021-02-18.zip 0.518 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.506 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-ukr/flores101-dev/bleu-scores.txt b/scores/dan-ukr/flores101-dev/bleu-scores.txt index 448c84e7..d8f6616c 100644 --- a/scores/dan-ukr/flores101-dev/bleu-scores.txt +++ b/scores/dan-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 23.5 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 9.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-ukr/flores101-dev/chrf-scores.txt b/scores/dan-ukr/flores101-dev/chrf-scores.txt index 2694798c..0d9da1ea 100644 --- a/scores/dan-ukr/flores101-dev/chrf-scores.txt +++ b/scores/dan-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53094 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.52286 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.368 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.356 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-ukr/flores101-devtest/bleu-scores.txt b/scores/dan-ukr/flores101-devtest/bleu-scores.txt index 04a18a15..ef6804da 100644 --- a/scores/dan-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/dan-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +25.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 23.8 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 10.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/dan-ukr/flores101-devtest/chrf-scores.txt b/scores/dan-ukr/flores101-devtest/chrf-scores.txt index 483b1371..0a398293 100644 --- a/scores/dan-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/dan-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53916 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.52969 https://object.pouta.csc.fi/Tatoeba-MT-models/dan-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.373 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.363 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/eng-dan/flores101-dev/bleu-scores.txt b/scores/eng-dan/flores101-dev/bleu-scores.txt index 5ce6a1e1..8996a72b 100644 --- a/scores/eng-dan/flores101-dev/bleu-scores.txt +++ b/scores/eng-dan/flores101-dev/bleu-scores.txt @@ -1,4 +1,4 @@ -46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 44.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 43.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip diff --git a/scores/eng-dan/flores101-dev/chrf-scores.txt b/scores/eng-dan/flores101-dev/chrf-scores.txt index f4d3e61f..ef3daf3a 100644 --- a/scores/eng-dan/flores101-dev/chrf-scores.txt +++ b/scores/eng-dan/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69727 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.69704 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 0.678 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip diff --git a/scores/eng-dan/flores101-devtest/bleu-scores.txt b/scores/eng-dan/flores101-devtest/bleu-scores.txt index 6e566b97..835a6d03 100644 --- a/scores/eng-dan/flores101-devtest/bleu-scores.txt +++ b/scores/eng-dan/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +47.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 47.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 45.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 44.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-dan/flores101-devtest/chrf-scores.txt b/scores/eng-dan/flores101-devtest/chrf-scores.txt index 4bf8c515..a1f76ddf 100644 --- a/scores/eng-dan/flores101-devtest/chrf-scores.txt +++ b/scores/eng-dan/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70810 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.70516 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.697 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 0.685 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip diff --git a/scores/eng-dan/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-dan/tatoeba-test-v2020-07-28/bleu-scores.txt index da65588b..bf0a07b5 100644 --- a/scores/eng-dan/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,5 +1,6 @@ 61.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip 61.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip +61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 61.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 58.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-dan/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-dan/tatoeba-test-v2020-07-28/chrf-scores.txt index 60546862..a9272b8b 100644 --- a/scores/eng-dan/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,5 +1,6 @@ 0.754 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 0.752 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip +0.75072 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.74942 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.725 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-dan/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-dan/tatoeba-test-v2021-03-30/bleu-scores.txt index 6738045a..da0a06cb 100644 --- a/scores/eng-dan/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,5 +1,6 @@ 61.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip 61.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip +61.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 58.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-dan/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-dan/tatoeba-test-v2021-03-30/chrf-scores.txt index 3548f72c..c32b0188 100644 --- a/scores/eng-dan/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,5 +1,6 @@ 0.755 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 0.753 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip +0.75155 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.75030 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.725 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-dan/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-dan/tatoeba-test-v2021-08-07/bleu-scores.txt index 1284083a..2f67916c 100644 --- a/scores/eng-dan/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 61.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip +61.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 58.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-dan/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-dan/tatoeba-test-v2021-08-07/chrf-scores.txt index d6d75357..7d825c64 100644 --- a/scores/eng-dan/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-dan/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,5 +1,6 @@ 0.755 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus+bt-2021-04-13.zip 0.753 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-dan/opus-2021-02-19.zip +0.75165 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.75045 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.725 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip diff --git a/scores/eng-fao/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-fao/tatoeba-test-v2020-07-28/bleu-scores.txt index 85e5aa12..b2028062 100644 --- a/scores/eng-fao/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,5 +1,6 @@ 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip 18.8 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip +18.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 18.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 17.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-fao/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-fao/tatoeba-test-v2020-07-28/chrf-scores.txt index c090978d..9c3b8d71 100644 --- a/scores/eng-fao/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.422 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip +0.40395 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.40072 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.396 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 0.371 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-fao/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-fao/tatoeba-test-v2021-03-30/bleu-scores.txt index 5babf777..e98972a4 100644 --- a/scores/eng-fao/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,5 +1,6 @@ 22.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip 18.7 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip +18.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 18.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 17.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-fao/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-fao/tatoeba-test-v2021-03-30/chrf-scores.txt index 9bbb8e50..6d5bf39b 100644 --- a/scores/eng-fao/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.420 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip +0.40364 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.40037 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.396 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 0.370 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-fao/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-fao/tatoeba-test-v2021-08-07/bleu-scores.txt index 85e5aa12..b2028062 100644 --- a/scores/eng-fao/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,5 +1,6 @@ 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip 18.8 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip +18.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 18.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 17.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-fao/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-fao/tatoeba-test-v2021-08-07/chrf-scores.txt index c090978d..9c3b8d71 100644 --- a/scores/eng-fao/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-fao/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.422 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip +0.40395 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.40072 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.396 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus1m+bt-2021-04-13.zip 0.371 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-fao/opus+bt-2021-03-09.zip diff --git a/scores/eng-isl/flores101-dev/bleu-scores.txt b/scores/eng-isl/flores101-dev/bleu-scores.txt index a9130cb9..135175d3 100644 --- a/scores/eng-isl/flores101-dev/bleu-scores.txt +++ b/scores/eng-isl/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 24.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 23.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip 23.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/flores101-dev/chrf-scores.txt b/scores/eng-isl/flores101-dev/chrf-scores.txt index 3ea9b741..a0ef2806 100644 --- a/scores/eng-isl/flores101-dev/chrf-scores.txt +++ b/scores/eng-isl/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52713 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.52427 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.514 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip 0.510 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/flores101-devtest/bleu-scores.txt b/scores/eng-isl/flores101-devtest/bleu-scores.txt index 98d71bcb..34f13484 100644 --- a/scores/eng-isl/flores101-devtest/bleu-scores.txt +++ b/scores/eng-isl/flores101-devtest/bleu-scores.txt @@ -1,4 +1,4 @@ -24.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +24.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 23.0 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip 22.4 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/flores101-devtest/chrf-scores.txt b/scores/eng-isl/flores101-devtest/chrf-scores.txt index 3e35be44..7151fb56 100644 --- a/scores/eng-isl/flores101-devtest/chrf-scores.txt +++ b/scores/eng-isl/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52076 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.52023 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.508 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip 0.502 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/newsdev2021.en-is/bleu-scores.txt b/scores/eng-isl/newsdev2021.en-is/bleu-scores.txt index 45126e20..0459ca19 100644 --- a/scores/eng-isl/newsdev2021.en-is/bleu-scores.txt +++ b/scores/eng-isl/newsdev2021.en-is/bleu-scores.txt @@ -1,3 +1,4 @@ +22.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 21.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 20.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip diff --git a/scores/eng-isl/newsdev2021.en-is/chrf-scores.txt b/scores/eng-isl/newsdev2021.en-is/chrf-scores.txt index 899cff82..c30b49b0 100644 --- a/scores/eng-isl/newsdev2021.en-is/chrf-scores.txt +++ b/scores/eng-isl/newsdev2021.en-is/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50376 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.50221 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.491 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip 0.489 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/newstest2021.en-is/bleu-scores.txt b/scores/eng-isl/newstest2021.en-is/bleu-scores.txt index bedf65da..2d65f904 100644 --- a/scores/eng-isl/newstest2021.en-is/bleu-scores.txt +++ b/scores/eng-isl/newstest2021.en-is/bleu-scores.txt @@ -1,4 +1,4 @@ -21.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +21.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 20.0 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 19.7 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 18.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip diff --git a/scores/eng-isl/newstest2021.en-is/chrf-scores.txt b/scores/eng-isl/newstest2021.en-is/chrf-scores.txt index ac8bbd74..0322adeb 100644 --- a/scores/eng-isl/newstest2021.en-is/chrf-scores.txt +++ b/scores/eng-isl/newstest2021.en-is/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50516 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.50360 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.486 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.484 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-isl/opus+bt-2021-03-07.zip diff --git a/scores/eng-isl/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-isl/tatoeba-test-v2020-07-28/bleu-scores.txt index 81ab0e1c..a45a9999 100644 --- a/scores/eng-isl/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +39.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 37.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 36.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-isl/tatoeba-test-v2020-07-28/chrf-scores.txt index 3632da82..87824043 100644 --- a/scores/eng-isl/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.59738 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.59330 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.574 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.572 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-isl/tatoeba-test-v2021-03-30/bleu-scores.txt index fd4af2cd..38792b82 100644 --- a/scores/eng-isl/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +39.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 37.0 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 36.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-isl/tatoeba-test-v2021-03-30/chrf-scores.txt index 039bdef2..6aef4cfd 100644 --- a/scores/eng-isl/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.59722 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.59317 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.574 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.572 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-isl/tatoeba-test-v2021-08-07/bleu-scores.txt index b611f7d3..b0c84bbc 100644 --- a/scores/eng-isl/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +39.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 37.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 36.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-isl/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-isl/tatoeba-test-v2021-08-07/chrf-scores.txt index b412dd11..541f6c76 100644 --- a/scores/eng-isl/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-isl/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.59731 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.59318 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.574 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.572 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nno/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-nno/tatoeba-test-v2020-07-28/bleu-scores.txt index 218b8874..a73b5f23 100644 --- a/scores/eng-nno/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +40.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 39.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 37.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nno/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-nno/tatoeba-test-v2020-07-28/chrf-scores.txt index 379318ee..5f50f045 100644 --- a/scores/eng-nno/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.616 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +0.61271 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.60962 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.604 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.597 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nno/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-nno/tatoeba-test-v2021-03-30/bleu-scores.txt index 218b8874..a73b5f23 100644 --- a/scores/eng-nno/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +40.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 39.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 37.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nno/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-nno/tatoeba-test-v2021-03-30/chrf-scores.txt index 379318ee..5f50f045 100644 --- a/scores/eng-nno/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.616 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +0.61271 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.60962 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.604 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.597 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nno/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-nno/tatoeba-test-v2021-08-07/bleu-scores.txt index 218b8874..a73b5f23 100644 --- a/scores/eng-nno/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +40.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 39.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 37.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nno/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-nno/tatoeba-test-v2021-08-07/chrf-scores.txt index 379318ee..5f50f045 100644 --- a/scores/eng-nno/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-nno/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.616 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip +0.61271 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.60962 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.604 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.597 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nob/flores101-dev/bleu-scores.txt b/scores/eng-nob/flores101-dev/bleu-scores.txt index 6b19ae89..1bf3c134 100644 --- a/scores/eng-nob/flores101-dev/bleu-scores.txt +++ b/scores/eng-nob/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 34.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +34.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 32.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 32.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 31.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/flores101-dev/chrf-scores.txt b/scores/eng-nob/flores101-dev/chrf-scores.txt index 4eeb3523..0a0f7d78 100644 --- a/scores/eng-nob/flores101-dev/chrf-scores.txt +++ b/scores/eng-nob/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.62231 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.62160 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.612 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.608 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 0.603 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/flores101-devtest/bleu-scores.txt b/scores/eng-nob/flores101-devtest/bleu-scores.txt index 228f67f2..7d33f142 100644 --- a/scores/eng-nob/flores101-devtest/bleu-scores.txt +++ b/scores/eng-nob/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 34.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +34.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 33.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 33.0 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 32.0 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nob/flores101-devtest/chrf-scores.txt b/scores/eng-nob/flores101-devtest/chrf-scores.txt index 91b06a9f..97518e1e 100644 --- a/scores/eng-nob/flores101-devtest/chrf-scores.txt +++ b/scores/eng-nob/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.62896 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.62760 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.620 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.613 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-gmq/opus4m+btTCv20210807-2021-12-08.zip 0.608 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/eng-nob/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-nob/tatoeba-test-v2020-07-28/bleu-scores.txt index 93daf4b4..88810dfd 100644 --- a/scores/eng-nob/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 54.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-nob/tatoeba-test-v2020-07-28/chrf-scores.txt index ce859070..5d5e9a45 100644 --- a/scores/eng-nob/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72382 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72375 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.718 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-nob/tatoeba-test-v2021-03-30/bleu-scores.txt index 93daf4b4..88810dfd 100644 --- a/scores/eng-nob/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 54.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-nob/tatoeba-test-v2021-03-30/chrf-scores.txt index ce859070..5d5e9a45 100644 --- a/scores/eng-nob/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72382 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72375 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.718 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-nob/tatoeba-test-v2021-08-07/bleu-scores.txt index aba7dd5d..5238d494 100644 --- a/scores/eng-nob/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 54.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-nob/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-nob/tatoeba-test-v2021-08-07/chrf-scores.txt index e3c2c428..527de588 100644 --- a/scores/eng-nob/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-nob/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72380 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72375 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.718 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-nor/opus+bt-2021-04-20.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus4m+btTCv20210807-2021-12-08.zip diff --git a/scores/eng-swe/flores101-dev/bleu-scores.txt b/scores/eng-swe/flores101-dev/bleu-scores.txt index f60fe0f0..387d2814 100644 --- a/scores/eng-swe/flores101-dev/bleu-scores.txt +++ b/scores/eng-swe/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 46.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 43.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip diff --git a/scores/eng-swe/flores101-dev/chrf-scores.txt b/scores/eng-swe/flores101-dev/chrf-scores.txt index d3907a4e..b794b746 100644 --- a/scores/eng-swe/flores101-dev/chrf-scores.txt +++ b/scores/eng-swe/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70140 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.70019 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip diff --git a/scores/eng-swe/flores101-devtest/bleu-scores.txt b/scores/eng-swe/flores101-devtest/bleu-scores.txt index 4bc3a88d..11c29b75 100644 --- a/scores/eng-swe/flores101-devtest/bleu-scores.txt +++ b/scores/eng-swe/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +46.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 46.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 44.2 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 43.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip diff --git a/scores/eng-swe/flores101-devtest/chrf-scores.txt b/scores/eng-swe/flores101-devtest/chrf-scores.txt index 873e2b9b..9d154ae2 100644 --- a/scores/eng-swe/flores101-devtest/chrf-scores.txt +++ b/scores/eng-swe/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70129 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.69937 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 0.685 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip diff --git a/scores/eng-swe/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/eng-swe/tatoeba-test-v2020-07-28/bleu-scores.txt index 02d84ffb..69aedb54 100644 --- a/scores/eng-swe/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,6 +1,7 @@ 62.0 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 61.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 60.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 57.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus2m-2020-08-01.zip diff --git a/scores/eng-swe/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/eng-swe/tatoeba-test-v2020-07-28/chrf-scores.txt index 692a026e..dce54e33 100644 --- a/scores/eng-swe/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,6 +1,7 @@ 0.747 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 0.746 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 0.744 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +0.74233 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.74028 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus2m-2020-08-01.zip diff --git a/scores/eng-swe/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/eng-swe/tatoeba-test-v2021-03-30/bleu-scores.txt index 156de15c..124beaa4 100644 --- a/scores/eng-swe/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,6 +1,7 @@ 61.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 61.7 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 60.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus-2020-07-26.zip diff --git a/scores/eng-swe/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/eng-swe/tatoeba-test-v2021-03-30/chrf-scores.txt index a0506fef..04fd4616 100644 --- a/scores/eng-swe/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,6 +1,7 @@ 0.747 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 0.746 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 0.744 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +0.74248 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.74056 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus2m-2020-08-01.zip diff --git a/scores/eng-swe/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/eng-swe/tatoeba-test-v2021-08-07/bleu-scores.txt index cc33319f..cc7c5603 100644 --- a/scores/eng-swe/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,6 +1,7 @@ 61.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 61.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 61.3 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +60.9 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 60.8 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.6 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 57.5 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus2m-2020-08-01.zip diff --git a/scores/eng-swe/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/eng-swe/tatoeba-test-v2021-08-07/chrf-scores.txt index b557d6ac..073a49c0 100644 --- a/scores/eng-swe/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/eng-swe/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,6 +1,7 @@ 0.746 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus+bt-2021-04-14.zip 0.745 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-19.zip 0.743 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-swe/opus-2021-02-15.zip +0.74197 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73991 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gem/opus2m-2020-08-01.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/eng-gmq/opus2m-2020-08-01.zip diff --git a/scores/fin-rus/flores101-dev/bleu-scores.txt b/scores/fin-rus/flores101-dev/bleu-scores.txt index e2f62b74..4a7c7a00 100644 --- a/scores/fin-rus/flores101-dev/bleu-scores.txt +++ b/scores/fin-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.2 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 19.4 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 16.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 12.5 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/flores101-dev/chrf-scores.txt b/scores/fin-rus/flores101-dev/chrf-scores.txt index 0b54f054..87750ae9 100644 --- a/scores/fin-rus/flores101-dev/chrf-scores.txt +++ b/scores/fin-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49755 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.48065 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 0.46060 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 0.395 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-sla/opus-2021-02-16.zip diff --git a/scores/fin-rus/flores101-devtest/bleu-scores.txt b/scores/fin-rus/flores101-devtest/bleu-scores.txt index 0e25f4af..38203f5c 100644 --- a/scores/fin-rus/flores101-devtest/bleu-scores.txt +++ b/scores/fin-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.4 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 19.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 17.1 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 12.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/flores101-devtest/chrf-scores.txt b/scores/fin-rus/flores101-devtest/chrf-scores.txt index 738bb3e9..20923fdc 100644 --- a/scores/fin-rus/flores101-devtest/chrf-scores.txt +++ b/scores/fin-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49920 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.48366 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 0.46392 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 0.397 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/fin-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index a8b15818..fef75288 100644 --- a/scores/fin-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 42.1 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/fin-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 1b28d669..9ebdc526 100644 --- a/scores/fin-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.67236 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 0.64430 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/fin-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index a8b15818..fef75288 100644 --- a/scores/fin-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 42.1 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/fin-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index 1b28d669..9ebdc526 100644 --- a/scores/fin-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.67236 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 0.64430 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/fin-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index a8726a30..fc189dfb 100644 --- a/scores/fin-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 42.6 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 42.2 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/fin-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 203b0283..6e08a5b4 100644 --- a/scores/fin-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/fin-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.67247 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 0.64433 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-rus/opus+bt-2022-01-19.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip diff --git a/scores/fin-ukr/flores101-dev/bleu-scores.txt b/scores/fin-ukr/flores101-dev/bleu-scores.txt index 4072af91..766d03ca 100644 --- a/scores/fin-ukr/flores101-dev/bleu-scores.txt +++ b/scores/fin-ukr/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 19.0 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip +17.3 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 17.1 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 11.3 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip 10.8 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-sla/opus-2021-02-16.zip diff --git a/scores/fin-ukr/flores101-dev/chrf-scores.txt b/scores/fin-ukr/flores101-dev/chrf-scores.txt index b663f2e1..be6018c8 100644 --- a/scores/fin-ukr/flores101-dev/chrf-scores.txt +++ b/scores/fin-ukr/flores101-dev/chrf-scores.txt @@ -1,5 +1,6 @@ 0.48750 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.46435 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip +0.46145 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.388 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip 0.387 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-sla/opus-2021-02-16.zip 0.306 https://object.pouta.csc.fi/Tatoeba-MT-models/tatoeba-zero/opus-2020-06-19.zip diff --git a/scores/fin-ukr/flores101-devtest/bleu-scores.txt b/scores/fin-ukr/flores101-devtest/bleu-scores.txt index f4291df0..94bc804d 100644 --- a/scores/fin-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/fin-ukr/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 19.7 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip +17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 17.7 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip 11.7 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip 11.5 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-sla/opus-2021-02-16.zip diff --git a/scores/fin-ukr/flores101-devtest/chrf-scores.txt b/scores/fin-ukr/flores101-devtest/chrf-scores.txt index b5a13249..8f2befa6 100644 --- a/scores/fin-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/fin-ukr/flores101-devtest/chrf-scores.txt @@ -1,5 +1,6 @@ 0.49562 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.46954 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opus4m+btTCv20210807-2022-01-19.zip +0.46935 https://object.pouta.csc.fi/Tatoeba-MT-models/fin-zle/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.390 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-sla/opus-2021-02-16.zip 0.386 https://object.pouta.csc.fi/Tatoeba-MT-models/fiu-zle/opus-2021-02-11.zip 0.306 https://object.pouta.csc.fi/Tatoeba-MT-models/tatoeba-zero/opus-2020-06-19.zip diff --git a/scores/hbs-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/hbs-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 68eeeb1a..0419a60a 100644 --- a/scores/hbs-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/hbs-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 92b41b81..97efae55 100644 --- a/scores/hbs-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71769 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71728 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.711 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/hbs-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 670260ec..79b42a40 100644 --- a/scores/hbs-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/hbs-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 07da578b..2752386c 100644 --- a/scores/hbs-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71768 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71727 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.711 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/hbs-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 37b259cb..0eeeb474 100644 --- a/scores/hbs-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.0 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/hbs-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index ab70481f..fb9f2f04 100644 --- a/scores/hbs-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/hbs-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71783 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71744 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.711 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hbs-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/hbs-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 2cb95d7b..5180bed7 100644 --- a/scores/hbs-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1 +1,2 @@ +59.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/hbs-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index a2fe2128..691d88fa 100644 --- a/scores/hbs-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,2 +1,3 @@ +0.75065 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/hbs-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 2cb95d7b..5180bed7 100644 --- a/scores/hbs-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1 +1,2 @@ +59.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/hbs-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index a2fe2128..691d88fa 100644 --- a/scores/hbs-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,2 +1,3 @@ +0.75065 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/hbs-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index 2cb95d7b..5180bed7 100644 --- a/scores/hbs-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1 +1,2 @@ +59.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/hbs-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index b6c2d6d4..8052a38b 100644 --- a/scores/hbs-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/hbs-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,2 +1,3 @@ +0.75065 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.703 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/hbs-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index c4771f1e..2d517c2f 100644 --- a/scores/hbs-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +53.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 51.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 49.1 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/hbs-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index 3d622460..29cdfbdc 100644 --- a/scores/hbs-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70727 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.691 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/hbs-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index 07643060..91470fc7 100644 --- a/scores/hbs-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 51.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 49.1 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/hbs-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 484b9a7c..ea2e5ab6 100644 --- a/scores/hbs-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70684 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.690 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/hbs-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index c0f96c87..ecdfe7da 100644 --- a/scores/hbs-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +53.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 51.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 50.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 49.1 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hbs-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/hbs-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 3cd8c64a..49996ebb 100644 --- a/scores/hbs-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/hbs-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70699 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.691 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hrv-bel/flores101-dev/bleu-scores.txt b/scores/hrv-bel/flores101-dev/bleu-scores.txt index 2fe0cd61..a21513a2 100644 --- a/scores/hrv-bel/flores101-dev/bleu-scores.txt +++ b/scores/hrv-bel/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +9.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 5.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 5.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 5.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-bel/flores101-dev/chrf-scores.txt b/scores/hrv-bel/flores101-dev/chrf-scores.txt index 76b2fc15..d23c9f64 100644 --- a/scores/hrv-bel/flores101-dev/chrf-scores.txt +++ b/scores/hrv-bel/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.37589 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.328 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.327 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.312 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-bel/flores101-devtest/bleu-scores.txt b/scores/hrv-bel/flores101-devtest/bleu-scores.txt index d77390f7..e61a55a9 100644 --- a/scores/hrv-bel/flores101-devtest/bleu-scores.txt +++ b/scores/hrv-bel/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +9.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 6.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 6.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 5.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-bel/flores101-devtest/chrf-scores.txt b/scores/hrv-bel/flores101-devtest/chrf-scores.txt index efaeb7d6..d53edda4 100644 --- a/scores/hrv-bel/flores101-devtest/chrf-scores.txt +++ b/scores/hrv-bel/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.38247 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.333 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.331 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.319 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-eng/flores101-dev/bleu-scores.txt b/scores/hrv-eng/flores101-dev/bleu-scores.txt index f2f9e793..f344fac4 100644 --- a/scores/hrv-eng/flores101-dev/bleu-scores.txt +++ b/scores/hrv-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 36.9 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 33.8 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 33.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/hrv-eng/flores101-dev/chrf-scores.txt b/scores/hrv-eng/flores101-dev/chrf-scores.txt index d1cfb165..bf4086aa 100644 --- a/scores/hrv-eng/flores101-dev/chrf-scores.txt +++ b/scores/hrv-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.64283 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.64056 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.610 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.609 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip diff --git a/scores/hrv-eng/flores101-devtest/chrf-scores.txt b/scores/hrv-eng/flores101-devtest/chrf-scores.txt index 48fc74e5..f1941e7a 100644 --- a/scores/hrv-eng/flores101-devtest/chrf-scores.txt +++ b/scores/hrv-eng/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.63948 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip +0.63914 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.606 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.604 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.599 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/hrv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/hrv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index f4b206aa..9b1001df 100644 --- a/scores/hrv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.7 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/hrv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 50e5887e..a026f527 100644 --- a/scores/hrv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.73974 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73475 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/hrv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 61699976..e95aa44c 100644 --- a/scores/hrv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.7 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/hrv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index c67ae2ff..c2cf0953 100644 --- a/scores/hrv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.73968 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73469 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/hrv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 6b011d9b..86c07d51 100644 --- a/scores/hrv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.8 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 56.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/hrv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index c8f5a158..836243aa 100644 --- a/scores/hrv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/hrv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74066 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73563 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opus-2021-02-19.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/hrv-rus/flores101-dev/bleu-scores.txt b/scores/hrv-rus/flores101-dev/bleu-scores.txt index fa392daf..383a7c2d 100644 --- a/scores/hrv-rus/flores101-dev/bleu-scores.txt +++ b/scores/hrv-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +23.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 15.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 15.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hrv-rus/flores101-dev/chrf-scores.txt b/scores/hrv-rus/flores101-dev/chrf-scores.txt index cd9c5bb5..30304c13 100644 --- a/scores/hrv-rus/flores101-dev/chrf-scores.txt +++ b/scores/hrv-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52021 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.435 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.433 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.432 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/hrv-rus/flores101-devtest/bleu-scores.txt b/scores/hrv-rus/flores101-devtest/bleu-scores.txt index da248f8d..f85ed602 100644 --- a/scores/hrv-rus/flores101-devtest/bleu-scores.txt +++ b/scores/hrv-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +23.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 15.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/hrv-rus/flores101-devtest/chrf-scores.txt b/scores/hrv-rus/flores101-devtest/chrf-scores.txt index 01345632..1184782a 100644 --- a/scores/hrv-rus/flores101-devtest/chrf-scores.txt +++ b/scores/hrv-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.51440 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.445 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.444 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.436 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/hrv-ukr/flores101-dev/bleu-scores.txt b/scores/hrv-ukr/flores101-dev/bleu-scores.txt index 39630164..b063aede 100644 --- a/scores/hrv-ukr/flores101-dev/bleu-scores.txt +++ b/scores/hrv-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 14.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 13.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/flores101-dev/chrf-scores.txt b/scores/hrv-ukr/flores101-dev/chrf-scores.txt index 78d40778..ccf8c7ff 100644 --- a/scores/hrv-ukr/flores101-dev/chrf-scores.txt +++ b/scores/hrv-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50125 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.432 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.430 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.427 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/hrv-ukr/flores101-devtest/bleu-scores.txt b/scores/hrv-ukr/flores101-devtest/bleu-scores.txt index 50987b02..fe6e1041 100644 --- a/scores/hrv-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/hrv-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 15.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 14.3 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/hrv-ukr/flores101-devtest/chrf-scores.txt b/scores/hrv-ukr/flores101-devtest/chrf-scores.txt index 6f67c4fc..b560cf3d 100644 --- a/scores/hrv-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/hrv-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50898 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.436 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.435 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/hrv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 320e0038..ae7383af 100644 --- a/scores/hrv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 46.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 45.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/hrv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index e80385c0..7819474e 100644 --- a/scores/hrv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69338 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.659 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.658 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.655 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/hrv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index 0abffb31..5f615845 100644 --- a/scores/hrv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +50.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 45.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 45.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 45.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/hrv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 818fadf3..56bab4b0 100644 --- a/scores/hrv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69190 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.656 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.645 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/hrv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index 320e0038..ae7383af 100644 --- a/scores/hrv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 46.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 45.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/hrv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/hrv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index e80385c0..7819474e 100644 --- a/scores/hrv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/hrv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69338 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.659 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.658 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.655 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/isl-bel/flores101-dev/bleu-scores.txt b/scores/isl-bel/flores101-dev/bleu-scores.txt index 28d834d0..096bf79f 100644 --- a/scores/isl-bel/flores101-dev/bleu-scores.txt +++ b/scores/isl-bel/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +4.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 3.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-bel/flores101-dev/chrf-scores.txt b/scores/isl-bel/flores101-dev/chrf-scores.txt index 630ea24f..925488d4 100644 --- a/scores/isl-bel/flores101-dev/chrf-scores.txt +++ b/scores/isl-bel/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.28473 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.245 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.241 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-bel/flores101-devtest/bleu-scores.txt b/scores/isl-bel/flores101-devtest/bleu-scores.txt index 28d834d0..700c1927 100644 --- a/scores/isl-bel/flores101-devtest/bleu-scores.txt +++ b/scores/isl-bel/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +5.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 3.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-bel/flores101-devtest/chrf-scores.txt b/scores/isl-bel/flores101-devtest/chrf-scores.txt index 6af1918c..a4456727 100644 --- a/scores/isl-bel/flores101-devtest/chrf-scores.txt +++ b/scores/isl-bel/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.28140 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.246 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.240 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-rus/flores101-dev/bleu-scores.txt b/scores/isl-rus/flores101-dev/bleu-scores.txt index 068d5b24..4f48a011 100644 --- a/scores/isl-rus/flores101-dev/bleu-scores.txt +++ b/scores/isl-rus/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +12.6 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 6.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 6.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-rus/flores101-dev/chrf-scores.txt b/scores/isl-rus/flores101-dev/chrf-scores.txt index bba4882e..1501d346 100644 --- a/scores/isl-rus/flores101-dev/chrf-scores.txt +++ b/scores/isl-rus/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.36799 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.286 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.280 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-rus/flores101-devtest/bleu-scores.txt b/scores/isl-rus/flores101-devtest/bleu-scores.txt index 8a28e260..ca164b91 100644 --- a/scores/isl-rus/flores101-devtest/bleu-scores.txt +++ b/scores/isl-rus/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +11.5 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 6.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-rus/flores101-devtest/chrf-scores.txt b/scores/isl-rus/flores101-devtest/chrf-scores.txt index 36028924..86a99835 100644 --- a/scores/isl-rus/flores101-devtest/chrf-scores.txt +++ b/scores/isl-rus/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.36197 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.283 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.278 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-ukr/flores101-dev/bleu-scores.txt b/scores/isl-ukr/flores101-dev/bleu-scores.txt index 95c9350c..adc679ee 100644 --- a/scores/isl-ukr/flores101-dev/bleu-scores.txt +++ b/scores/isl-ukr/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +10.5 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 5.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-ukr/flores101-dev/chrf-scores.txt b/scores/isl-ukr/flores101-dev/chrf-scores.txt index 202ea672..2394d018 100644 --- a/scores/isl-ukr/flores101-dev/chrf-scores.txt +++ b/scores/isl-ukr/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.35024 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.278 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.269 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-ukr/flores101-devtest/bleu-scores.txt b/scores/isl-ukr/flores101-devtest/bleu-scores.txt index 91fe4b34..75c9d874 100644 --- a/scores/isl-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/isl-ukr/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +10.7 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 5.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/isl-ukr/flores101-devtest/chrf-scores.txt b/scores/isl-ukr/flores101-devtest/chrf-scores.txt index 757684dc..f2623576 100644 --- a/scores/isl-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/isl-ukr/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.34796 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.276 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.270 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/lav-eng/flores101-dev/bleu-scores.txt b/scores/lav-eng/flores101-dev/bleu-scores.txt index cf024cc4..85b55dab 100644 --- a/scores/lav-eng/flores101-dev/bleu-scores.txt +++ b/scores/lav-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +36.9 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 36.8 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 35.2 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 31.5 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/flores101-dev/chrf-scores.txt b/scores/lav-eng/flores101-dev/chrf-scores.txt index 87d364d1..33ff2928 100644 --- a/scores/lav-eng/flores101-dev/chrf-scores.txt +++ b/scores/lav-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.64214 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.64088 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 0.603 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/flores101-devtest/bleu-scores.txt b/scores/lav-eng/flores101-devtest/bleu-scores.txt index 8e64c487..9f5e9399 100644 --- a/scores/lav-eng/flores101-devtest/bleu-scores.txt +++ b/scores/lav-eng/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 37.2 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +37.0 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 35.4 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 31.3 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip 30.2 https://object.pouta.csc.fi/Tatoeba-MT-models/bat-eng/opus4m+btTCv20210807-2021-09-30.zip diff --git a/scores/lav-eng/flores101-devtest/chrf-scores.txt b/scores/lav-eng/flores101-devtest/chrf-scores.txt index 8e2ee825..9938ce51 100644 --- a/scores/lav-eng/flores101-devtest/chrf-scores.txt +++ b/scores/lav-eng/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.64246 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.63966 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.629 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 0.600 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-24.zip 0.599 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/lav-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 10a8d2a7..1c430b40 100644 --- a/scores/lav-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +59.5 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 54.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/lav-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index f200176f..49aca3f4 100644 --- a/scores/lav-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74132 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73884 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 0.707 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/lav-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 10a8d2a7..1c430b40 100644 --- a/scores/lav-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +59.5 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 54.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/lav-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index f200176f..49aca3f4 100644 --- a/scores/lav-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74132 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73884 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 0.707 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/lav-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index a5a46094..3df3e898 100644 --- a/scores/lav-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +59.5 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 54.1 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/lav-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/lav-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 884caf58..65f5fa1d 100644 --- a/scores/lav-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/lav-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74132 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.73884 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus+bt-2021-04-30.zip 0.707 https://object.pouta.csc.fi/Tatoeba-MT-models/lav-eng/opus-2021-02-19.zip diff --git a/scores/mkd-bel/flores101-dev/bleu-scores.txt b/scores/mkd-bel/flores101-dev/bleu-scores.txt index d0d709d8..7d3faf48 100644 --- a/scores/mkd-bel/flores101-dev/bleu-scores.txt +++ b/scores/mkd-bel/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +9.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 5.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 5.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 5.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/mkd-bel/flores101-dev/chrf-scores.txt b/scores/mkd-bel/flores101-dev/chrf-scores.txt index 6c3ea990..02fbf4b6 100644 --- a/scores/mkd-bel/flores101-dev/chrf-scores.txt +++ b/scores/mkd-bel/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.39460 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.337 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.334 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.326 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-bel/flores101-devtest/bleu-scores.txt b/scores/mkd-bel/flores101-devtest/bleu-scores.txt index d236b70e..3b600dcf 100644 --- a/scores/mkd-bel/flores101-devtest/bleu-scores.txt +++ b/scores/mkd-bel/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +10.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 6.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 6.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 6.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/mkd-bel/flores101-devtest/chrf-scores.txt b/scores/mkd-bel/flores101-devtest/chrf-scores.txt index 52663011..cee56531 100644 --- a/scores/mkd-bel/flores101-devtest/chrf-scores.txt +++ b/scores/mkd-bel/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.40440 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.344 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.336 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.334 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-eng/flores101-dev/bleu-scores.txt b/scores/mkd-eng/flores101-dev/bleu-scores.txt index f41e9711..70687004 100644 --- a/scores/mkd-eng/flores101-dev/bleu-scores.txt +++ b/scores/mkd-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +44.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 38.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 36.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 36.3 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip diff --git a/scores/mkd-eng/flores101-dev/chrf-scores.txt b/scores/mkd-eng/flores101-dev/chrf-scores.txt index 4f49a20f..14c92063 100644 --- a/scores/mkd-eng/flores101-dev/chrf-scores.txt +++ b/scores/mkd-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68438 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.647 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.631 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/mkd-eng/flores101-devtest/bleu-scores.txt b/scores/mkd-eng/flores101-devtest/bleu-scores.txt index 7f4a5b4b..0ea76dfe 100644 --- a/scores/mkd-eng/flores101-devtest/bleu-scores.txt +++ b/scores/mkd-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +43.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 37.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 35.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 35.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/mkd-eng/flores101-devtest/chrf-scores.txt b/scores/mkd-eng/flores101-devtest/chrf-scores.txt index f1980706..9fb9e616 100644 --- a/scores/mkd-eng/flores101-devtest/chrf-scores.txt +++ b/scores/mkd-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.67444 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.636 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.626 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.623 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/mkd-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/mkd-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 23e2292e..06ab9e49 100644 --- a/scores/mkd-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip 54.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/mkd-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/mkd-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index b709677a..9a16e114 100644 --- a/scores/mkd-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70036 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip diff --git a/scores/mkd-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/mkd-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 23e2292e..06ab9e49 100644 --- a/scores/mkd-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip 54.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/mkd-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/mkd-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index b709677a..566602d0 100644 --- a/scores/mkd-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70043 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip diff --git a/scores/mkd-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/mkd-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 5d1c07f1..4c29989e 100644 --- a/scores/mkd-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 54.8 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip 54.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/mkd-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/mkd-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index b709677a..566602d0 100644 --- a/scores/mkd-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/mkd-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70043 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/mkd-eng/opus+bt-2021-04-30.zip diff --git a/scores/mkd-rus/flores101-dev/bleu-scores.txt b/scores/mkd-rus/flores101-dev/bleu-scores.txt index 91539647..dd7c4be5 100644 --- a/scores/mkd-rus/flores101-dev/bleu-scores.txt +++ b/scores/mkd-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 16.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/mkd-rus/flores101-dev/chrf-scores.txt b/scores/mkd-rus/flores101-dev/chrf-scores.txt index abc592e3..b6f1a381 100644 --- a/scores/mkd-rus/flores101-dev/chrf-scores.txt +++ b/scores/mkd-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52648 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.447 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.446 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.444 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-rus/flores101-devtest/bleu-scores.txt b/scores/mkd-rus/flores101-devtest/bleu-scores.txt index 18467086..7caba09f 100644 --- a/scores/mkd-rus/flores101-devtest/bleu-scores.txt +++ b/scores/mkd-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +24.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/mkd-rus/flores101-devtest/chrf-scores.txt b/scores/mkd-rus/flores101-devtest/chrf-scores.txt index 9e9cde66..10c2f776 100644 --- a/scores/mkd-rus/flores101-devtest/chrf-scores.txt +++ b/scores/mkd-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52491 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.451 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.445 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-ukr/flores101-dev/bleu-scores.txt b/scores/mkd-ukr/flores101-dev/bleu-scores.txt index 001ec03d..e0d4c1b7 100644 --- a/scores/mkd-ukr/flores101-dev/bleu-scores.txt +++ b/scores/mkd-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +22.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 14.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-ukr/flores101-dev/chrf-scores.txt b/scores/mkd-ukr/flores101-dev/chrf-scores.txt index 76bd299e..e0388b3f 100644 --- a/scores/mkd-ukr/flores101-dev/chrf-scores.txt +++ b/scores/mkd-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.51362 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.441 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.440 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.439 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/mkd-ukr/flores101-devtest/bleu-scores.txt b/scores/mkd-ukr/flores101-devtest/bleu-scores.txt index 383662cd..4bbfe250 100644 --- a/scores/mkd-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/mkd-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 15.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 15.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/mkd-ukr/flores101-devtest/chrf-scores.txt b/scores/mkd-ukr/flores101-devtest/chrf-scores.txt index b4443d0c..aa40688f 100644 --- a/scores/mkd-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/mkd-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52021 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.450 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.448 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/nob-bel/flores101-dev/bleu-scores.txt b/scores/nob-bel/flores101-dev/bleu-scores.txt index f319ce05..04f29016 100644 --- a/scores/nob-bel/flores101-dev/bleu-scores.txt +++ b/scores/nob-bel/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +8.3 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 3.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-bel/flores101-dev/chrf-scores.txt b/scores/nob-bel/flores101-dev/chrf-scores.txt index cd55f19e..625140df 100644 --- a/scores/nob-bel/flores101-dev/chrf-scores.txt +++ b/scores/nob-bel/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.37003 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.291 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.286 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-bel/flores101-devtest/bleu-scores.txt b/scores/nob-bel/flores101-devtest/bleu-scores.txt index db98c688..1c3e0df3 100644 --- a/scores/nob-bel/flores101-devtest/bleu-scores.txt +++ b/scores/nob-bel/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +8.3 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 4.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-bel/flores101-devtest/chrf-scores.txt b/scores/nob-bel/flores101-devtest/chrf-scores.txt index c41f7540..6e04c68f 100644 --- a/scores/nob-bel/flores101-devtest/chrf-scores.txt +++ b/scores/nob-bel/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.37897 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.290 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.286 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/flores101-dev/bleu-scores.txt b/scores/nob-rus/flores101-dev/bleu-scores.txt index 41837f80..2f83a41a 100644 --- a/scores/nob-rus/flores101-dev/bleu-scores.txt +++ b/scores/nob-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.8 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 15.1 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 10.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/flores101-dev/chrf-scores.txt b/scores/nob-rus/flores101-dev/chrf-scores.txt index 5cf5eefe..4a392046 100644 --- a/scores/nob-rus/flores101-dev/chrf-scores.txt +++ b/scores/nob-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49880 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.420 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.359 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/flores101-devtest/bleu-scores.txt b/scores/nob-rus/flores101-devtest/bleu-scores.txt index e56200b8..38d957ce 100644 --- a/scores/nob-rus/flores101-devtest/bleu-scores.txt +++ b/scores/nob-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 8.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/flores101-devtest/chrf-scores.txt b/scores/nob-rus/flores101-devtest/chrf-scores.txt index 81eca214..7a8f52e9 100644 --- a/scores/nob-rus/flores101-devtest/chrf-scores.txt +++ b/scores/nob-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50213 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.423 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.355 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/nob-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 23b64c98..7db6b21e 100644 --- a/scores/nob-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 39.8 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/nob-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 7329e40f..d7b70e98 100644 --- a/scores/nob-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66744 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 0.509 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.499 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/nob-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 23b64c98..7db6b21e 100644 --- a/scores/nob-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 39.8 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/nob-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index 7329e40f..d7b70e98 100644 --- a/scores/nob-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66744 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 0.509 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.499 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/nob-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index 23b64c98..7db6b21e 100644 --- a/scores/nob-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 39.8 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/nob-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 7329e40f..d7b70e98 100644 --- a/scores/nob-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/nob-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66744 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-rus/opus-2021-02-23.zip 0.509 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.499 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-ukr/flores101-dev/bleu-scores.txt b/scores/nob-ukr/flores101-dev/bleu-scores.txt index ae33e2dd..5a1c2412 100644 --- a/scores/nob-ukr/flores101-dev/bleu-scores.txt +++ b/scores/nob-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +20.4 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 11.1 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-ukr/opus-2021-02-23.zip 8.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-ukr/flores101-dev/chrf-scores.txt b/scores/nob-ukr/flores101-dev/chrf-scores.txt index 84f0e1f6..6b6afdaf 100644 --- a/scores/nob-ukr/flores101-dev/chrf-scores.txt +++ b/scores/nob-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50170 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.387 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-ukr/opus-2021-02-23.zip 0.360 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.351 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-ukr/flores101-devtest/bleu-scores.txt b/scores/nob-ukr/flores101-devtest/bleu-scores.txt index d79dc3da..002a4097 100644 --- a/scores/nob-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/nob-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.4 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 11.8 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-ukr/opus-2021-02-23.zip 9.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/nob-ukr/flores101-devtest/chrf-scores.txt b/scores/nob-ukr/flores101-devtest/chrf-scores.txt index 4befcc28..fde1b227 100644 --- a/scores/nob-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/nob-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.51041 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.395 https://object.pouta.csc.fi/Tatoeba-MT-models/nor-ukr/opus-2021-02-23.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.354 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/pol-eng/flores101-dev/bleu-scores.txt b/scores/pol-eng/flores101-dev/bleu-scores.txt index a091a382..27f2957c 100644 --- a/scores/pol-eng/flores101-dev/bleu-scores.txt +++ b/scores/pol-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +29.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 28.9 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip 26.5 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 26.4 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus+bt-2021-04-30.zip diff --git a/scores/pol-eng/flores101-dev/chrf-scores.txt b/scores/pol-eng/flores101-dev/chrf-scores.txt index 0e1db5b4..3b5d1a88 100644 --- a/scores/pol-eng/flores101-dev/chrf-scores.txt +++ b/scores/pol-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.58424 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.58154 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip 0.562 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus+bt-2021-04-30.zip 0.561 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip diff --git a/scores/pol-eng/flores101-devtest/bleu-scores.txt b/scores/pol-eng/flores101-devtest/bleu-scores.txt index 6525b2da..211c940d 100644 --- a/scores/pol-eng/flores101-devtest/bleu-scores.txt +++ b/scores/pol-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +29.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 28.8 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip 25.8 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus+bt-2021-04-30.zip 25.7 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip diff --git a/scores/pol-eng/flores101-devtest/chrf-scores.txt b/scores/pol-eng/flores101-devtest/chrf-scores.txt index 58c9afc7..674b5279 100644 --- a/scores/pol-eng/flores101-devtest/chrf-scores.txt +++ b/scores/pol-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.58301 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.57973 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip 0.558 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus+bt-2021-04-30.zip 0.556 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip diff --git a/scores/pol-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/pol-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 4124f74e..3c29bced 100644 --- a/scores/pol-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 51.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/pol-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/pol-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 6aa248cc..03c25336 100644 --- a/scores/pol-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71012 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +0.70515 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip 0.670 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/pol-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/pol-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index deb48984..7538c1c7 100644 --- a/scores/pol-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 51.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/pol-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/pol-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index ef4a2001..11b490e6 100644 --- a/scores/pol-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71023 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +0.70528 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip 0.670 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/pol-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/pol-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 71134ed3..eaeede55 100644 --- a/scores/pol-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 56.1 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 53.6 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus+bt-2021-04-30.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 51.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip diff --git a/scores/pol-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/pol-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index eea3c544..948e23c5 100644 --- a/scores/pol-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/pol-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71047 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opusTCv20210807+bt_transformer-big_2022-03-11.zip +0.70544 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/pol-eng/opus-2021-02-18.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m-2020-08-12.zip 0.670 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/rus-bul/flores101-dev/bleu-scores.txt b/scores/rus-bul/flores101-dev/bleu-scores.txt index 20cdefd1..11886d0d 100644 --- a/scores/rus-bul/flores101-dev/bleu-scores.txt +++ b/scores/rus-bul/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 24.5 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 20.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-bul/flores101-dev/chrf-scores.txt b/scores/rus-bul/flores101-dev/chrf-scores.txt index 22b4a468..1cb8424c 100644 --- a/scores/rus-bul/flores101-dev/chrf-scores.txt +++ b/scores/rus-bul/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57651 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.534 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 0.509 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-bul/flores101-devtest/bleu-scores.txt b/scores/rus-bul/flores101-devtest/bleu-scores.txt index 9039dc7a..ccb21552 100644 --- a/scores/rus-bul/flores101-devtest/bleu-scores.txt +++ b/scores/rus-bul/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +28.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 23.7 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 20.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 20.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-bul/flores101-devtest/chrf-scores.txt b/scores/rus-bul/flores101-devtest/chrf-scores.txt index ed53167e..6d7f1975 100644 --- a/scores/rus-bul/flores101-devtest/chrf-scores.txt +++ b/scores/rus-bul/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.58605 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.529 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 0.511 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.510 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-bul/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-bul/tatoeba-test-v2020-07-28/bleu-scores.txt index 1514a4b1..3bc33887 100644 --- a/scores/rus-bul/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +54.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 45.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-bul/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-bul/tatoeba-test-v2020-07-28/chrf-scores.txt index b914a13a..db1d40e9 100644 --- a/scores/rus-bul/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71678 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 0.658 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.655 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-bul/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-bul/tatoeba-test-v2021-03-30/bleu-scores.txt index 1514a4b1..3bc33887 100644 --- a/scores/rus-bul/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +54.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 45.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-bul/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-bul/tatoeba-test-v2021-03-30/chrf-scores.txt index b914a13a..db1d40e9 100644 --- a/scores/rus-bul/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71678 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 0.658 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.655 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-bul/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-bul/tatoeba-test-v2021-08-07/bleu-scores.txt index 1514a4b1..3bc33887 100644 --- a/scores/rus-bul/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +54.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 45.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-bul/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-bul/tatoeba-test-v2021-08-07/chrf-scores.txt index b914a13a..db1d40e9 100644 --- a/scores/rus-bul/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-bul/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71678 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-bul/opus-2020-07-03.zip 0.658 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.655 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-dan/flores101-dev/bleu-scores.txt b/scores/rus-dan/flores101-dev/bleu-scores.txt index 4515631a..fc841e2a 100644 --- a/scores/rus-dan/flores101-dev/bleu-scores.txt +++ b/scores/rus-dan/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +28.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 21.3 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 13.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 13.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/flores101-dev/chrf-scores.txt b/scores/rus-dan/flores101-dev/chrf-scores.txt index 936fdf1f..84dbe151 100644 --- a/scores/rus-dan/flores101-dev/chrf-scores.txt +++ b/scores/rus-dan/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.56354 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.487 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 0.413 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.407 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/flores101-devtest/bleu-scores.txt b/scores/rus-dan/flores101-devtest/bleu-scores.txt index 97adf4fb..23314755 100644 --- a/scores/rus-dan/flores101-devtest/bleu-scores.txt +++ b/scores/rus-dan/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +28.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 20.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 13.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 12.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/flores101-devtest/chrf-scores.txt b/scores/rus-dan/flores101-devtest/chrf-scores.txt index 66b3a39e..d3340098 100644 --- a/scores/rus-dan/flores101-devtest/chrf-scores.txt +++ b/scores/rus-dan/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.55917 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.478 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 0.406 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.398 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-dan/tatoeba-test-v2020-07-28/bleu-scores.txt index 3d1e0daf..b7ac0299 100644 --- a/scores/rus-dan/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +59.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 35.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-dan/tatoeba-test-v2020-07-28/chrf-scores.txt index 6da5f1db..b824cf7e 100644 --- a/scores/rus-dan/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74307 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 0.556 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.538 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-dan/tatoeba-test-v2021-03-30/bleu-scores.txt index 3d1e0daf..b7ac0299 100644 --- a/scores/rus-dan/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +59.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 35.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-dan/tatoeba-test-v2021-03-30/chrf-scores.txt index 6da5f1db..b824cf7e 100644 --- a/scores/rus-dan/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74307 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 0.556 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.538 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-dan/tatoeba-test-v2021-08-07/bleu-scores.txt index 3d1e0daf..b7ac0299 100644 --- a/scores/rus-dan/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +59.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 35.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-dan/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-dan/tatoeba-test-v2021-08-07/chrf-scores.txt index 6da5f1db..b824cf7e 100644 --- a/scores/rus-dan/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-dan/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74307 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-dan/opus-2021-02-18.zip 0.556 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.538 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-eng/flores101-dev/chrf-scores.txt b/scores/rus-eng/flores101-dev/chrf-scores.txt index 1889f70f..6263319e 100644 --- a/scores/rus-eng/flores101-dev/chrf-scores.txt +++ b/scores/rus-eng/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.62997 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip +0.62931 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.597 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 0.593 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 0.584 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip diff --git a/scores/rus-eng/flores101-devtest/bleu-scores.txt b/scores/rus-eng/flores101-devtest/bleu-scores.txt index e4f4bb91..0367d18b 100644 --- a/scores/rus-eng/flores101-devtest/bleu-scores.txt +++ b/scores/rus-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +35.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 34.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 31.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 30.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/flores101-devtest/chrf-scores.txt b/scores/rus-eng/flores101-devtest/chrf-scores.txt index ebdcdfbc..9e6ff598 100644 --- a/scores/rus-eng/flores101-devtest/chrf-scores.txt +++ b/scores/rus-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.62581 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.62349 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.594 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 0.587 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/newstest2012/chrf-scores.txt b/scores/rus-eng/newstest2012/chrf-scores.txt index a9299de1..18640c6e 100644 --- a/scores/rus-eng/newstest2012/chrf-scores.txt +++ b/scores/rus-eng/newstest2012/chrf-scores.txt @@ -1,3 +1,4 @@ +0.63724 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.63670 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.611 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 0.607 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/newstest2013/bleu-scores.txt b/scores/rus-eng/newstest2013/bleu-scores.txt index e65c49ab..cbbccdda 100644 --- a/scores/rus-eng/newstest2013/bleu-scores.txt +++ b/scores/rus-eng/newstest2013/bleu-scores.txt @@ -1,3 +1,4 @@ +31.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 31.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 28.3 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/newstest2013/chrf-scores.txt b/scores/rus-eng/newstest2013/chrf-scores.txt index 0bb97d98..b6f94d65 100644 --- a/scores/rus-eng/newstest2013/chrf-scores.txt +++ b/scores/rus-eng/newstest2013/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57641 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.57480 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.550 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 0.546 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index ba7b85bf..a5779102 100644 --- a/scores/rus-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +59.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 57.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 57.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index c88855e2..ead3ded2 100644 --- a/scores/rus-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72653 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72540 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.716 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 86e314c7..8ee2a0b5 100644 --- a/scores/rus-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 57.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index ae0e7333..f42f9954 100644 --- a/scores/rus-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72153 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.72072 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.713 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 0.711 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 072e190c..bb1c90cc 100644 --- a/scores/rus-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +57.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 55.5 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 1f126804..2314bc4f 100644 --- a/scores/rus-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71452 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71313 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.702 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip 0.700 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip diff --git a/scores/rus-eng/tico19-test/bleu-scores.txt b/scores/rus-eng/tico19-test/bleu-scores.txt index 3be07007..257dc812 100644 --- a/scores/rus-eng/tico19-test/bleu-scores.txt +++ b/scores/rus-eng/tico19-test/bleu-scores.txt @@ -1,3 +1,4 @@ +33.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 33.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 30.0 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 29.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-eng/tico19-test/chrf-scores.txt b/scores/rus-eng/tico19-test/chrf-scores.txt index 31cdeb73..980d3808 100644 --- a/scores/rus-eng/tico19-test/chrf-scores.txt +++ b/scores/rus-eng/tico19-test/chrf-scores.txt @@ -1,3 +1,4 @@ +0.63280 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.63111 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.607 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus+bt-2021-04-30.zip 0.602 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-eng/opus-2021-02-19.zip diff --git a/scores/rus-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt index b8c94739..2329fdfe 100644 --- a/scores/rus-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,2 +1,3 @@ +49.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt index 7e064a6e..0558cd56 100644 --- a/scores/rus-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1 +1,2 @@ +0.69279 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt index b8c94739..2329fdfe 100644 --- a/scores/rus-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,2 +1,3 @@ +49.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt index 7e064a6e..0558cd56 100644 --- a/scores/rus-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1 +1,2 @@ +0.69279 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt index b8c94739..2329fdfe 100644 --- a/scores/rus-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,2 +1,3 @@ +49.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 44.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt index 7e064a6e..21d931da 100644 --- a/scores/rus-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1 +1,2 @@ +0.69262 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-hrv/flores101-dev/bleu-scores.txt b/scores/rus-hrv/flores101-dev/bleu-scores.txt index 17a1fc36..101a39ab 100644 --- a/scores/rus-hrv/flores101-dev/bleu-scores.txt +++ b/scores/rus-hrv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +22.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 16.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-hrv/flores101-dev/chrf-scores.txt b/scores/rus-hrv/flores101-dev/chrf-scores.txt index 6ac93847..10ecb3e7 100644 --- a/scores/rus-hrv/flores101-dev/chrf-scores.txt +++ b/scores/rus-hrv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53225 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.462 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.460 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-hrv/flores101-devtest/bleu-scores.txt b/scores/rus-hrv/flores101-devtest/bleu-scores.txt index 73695a61..502b03fd 100644 --- a/scores/rus-hrv/flores101-devtest/bleu-scores.txt +++ b/scores/rus-hrv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +22.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-hrv/flores101-devtest/chrf-scores.txt b/scores/rus-hrv/flores101-devtest/chrf-scores.txt index 4cc5b2d4..2f1b030f 100644 --- a/scores/rus-hrv/flores101-devtest/chrf-scores.txt +++ b/scores/rus-hrv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53230 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.463 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.461 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.454 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-isl/flores101-dev/bleu-scores.txt b/scores/rus-isl/flores101-dev/bleu-scores.txt index b93cd415..62d21ce7 100644 --- a/scores/rus-isl/flores101-dev/bleu-scores.txt +++ b/scores/rus-isl/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ 5.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +4.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/rus-isl/flores101-dev/chrf-scores.txt b/scores/rus-isl/flores101-dev/chrf-scores.txt index f591e2c5..0461d0ad 100644 --- a/scores/rus-isl/flores101-dev/chrf-scores.txt +++ b/scores/rus-isl/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ 0.287 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.280 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.26997 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/rus-isl/flores101-devtest/bleu-scores.txt b/scores/rus-isl/flores101-devtest/bleu-scores.txt index 7b6fb68e..57146ff2 100644 --- a/scores/rus-isl/flores101-devtest/bleu-scores.txt +++ b/scores/rus-isl/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ 5.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +4.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/rus-isl/flores101-devtest/chrf-scores.txt b/scores/rus-isl/flores101-devtest/chrf-scores.txt index 0be570d1..3aecef7d 100644 --- a/scores/rus-isl/flores101-devtest/chrf-scores.txt +++ b/scores/rus-isl/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ 0.278 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.274 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.26803 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/rus-lav/flores101-dev/bleu-scores.txt b/scores/rus-lav/flores101-dev/bleu-scores.txt index 872fd4d5..22df5e2a 100644 --- a/scores/rus-lav/flores101-dev/bleu-scores.txt +++ b/scores/rus-lav/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +20.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 20.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 16.0 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 15.5 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/flores101-dev/chrf-scores.txt b/scores/rus-lav/flores101-dev/chrf-scores.txt index 0f68a643..3dea28a3 100644 --- a/scores/rus-lav/flores101-dev/chrf-scores.txt +++ b/scores/rus-lav/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50124 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.49996 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.449 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/flores101-devtest/bleu-scores.txt b/scores/rus-lav/flores101-devtest/bleu-scores.txt index afceab53..0dfb6fe2 100644 --- a/scores/rus-lav/flores101-devtest/bleu-scores.txt +++ b/scores/rus-lav/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 20.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 15.1 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/flores101-devtest/chrf-scores.txt b/scores/rus-lav/flores101-devtest/chrf-scores.txt index df641192..fc416cd2 100644 --- a/scores/rus-lav/flores101-devtest/chrf-scores.txt +++ b/scores/rus-lav/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50566 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.50134 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.441 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 0.439 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-lav/tatoeba-test-v2020-07-28/bleu-scores.txt index 05aa023b..a142d634 100644 --- a/scores/rus-lav/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +56.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 55.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 50.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-lav/tatoeba-test-v2020-07-28/chrf-scores.txt index b4eeae5e..bc40c5ec 100644 --- a/scores/rus-lav/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74581 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.74223 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.697 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip 0.696 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip diff --git a/scores/rus-lav/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-lav/tatoeba-test-v2021-03-30/bleu-scores.txt index ad6ce598..782741a0 100644 --- a/scores/rus-lav/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 54.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 50.0 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 49.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-lav/tatoeba-test-v2021-03-30/chrf-scores.txt index c85088ba..f1a8a557 100644 --- a/scores/rus-lav/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74349 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.73994 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.693 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 0.513 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/rus-lav/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-lav/tatoeba-test-v2021-08-07/bleu-scores.txt index 05aa023b..a142d634 100644 --- a/scores/rus-lav/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +56.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 55.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 50.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip diff --git a/scores/rus-lav/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-lav/tatoeba-test-v2021-08-07/chrf-scores.txt index b4eeae5e..bc40c5ec 100644 --- a/scores/rus-lav/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-lav/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74581 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.74223 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.697 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2021-02-23.zip 0.696 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lav/opus-2020-06-17.zip diff --git a/scores/rus-lit/flores101-dev/bleu-scores.txt b/scores/rus-lit/flores101-dev/bleu-scores.txt index f46e859d..24db7f2f 100644 --- a/scores/rus-lit/flores101-dev/bleu-scores.txt +++ b/scores/rus-lit/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 19.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +19.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 13.0 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 7.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 7.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-lit/flores101-dev/chrf-scores.txt b/scores/rus-lit/flores101-dev/chrf-scores.txt index 03e4cf67..a8aa2608 100644 --- a/scores/rus-lit/flores101-dev/chrf-scores.txt +++ b/scores/rus-lit/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.53395 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.53315 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 0.374 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.365 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-lit/flores101-devtest/bleu-scores.txt b/scores/rus-lit/flores101-devtest/bleu-scores.txt index eca22cbe..fa8e908e 100644 --- a/scores/rus-lit/flores101-devtest/bleu-scores.txt +++ b/scores/rus-lit/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 13.5 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 8.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/rus-lit/flores101-devtest/chrf-scores.txt b/scores/rus-lit/flores101-devtest/chrf-scores.txt index c7438394..4e7f197d 100644 --- a/scores/rus-lit/flores101-devtest/chrf-scores.txt +++ b/scores/rus-lit/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53780 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.53732 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.447 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 0.368 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/rus-lit/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-lit/tatoeba-test-v2020-07-28/bleu-scores.txt index 418a273d..e64ab6b1 100644 --- a/scores/rus-lit/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-lit/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +49.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 49.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 43.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 21.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/rus-lit/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-lit/tatoeba-test-v2020-07-28/chrf-scores.txt index 4d513a5d..4bc26a1e 100644 --- a/scores/rus-lit/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-lit/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.73342 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.73268 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.675 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 0.484 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.465 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-lit/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-lit/tatoeba-test-v2021-03-30/chrf-scores.txt index 6cad7ced..33509778 100644 --- a/scores/rus-lit/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-lit/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.72190 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.72097 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 0.480 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.461 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-lit/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-lit/tatoeba-test-v2021-08-07/bleu-scores.txt index dab55e85..9170aa54 100644 --- a/scores/rus-lit/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-lit/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +47.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 47.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 41.0 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 20.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/rus-lit/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-lit/tatoeba-test-v2021-08-07/chrf-scores.txt index 8c2f3f5a..2f5f05f4 100644 --- a/scores/rus-lit/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-lit/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.70795 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.70744 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.651 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-lit/opus-2021-02-19.zip 0.473 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.454 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-mkd/flores101-dev/bleu-scores.txt b/scores/rus-mkd/flores101-dev/bleu-scores.txt index e5ca55d4..541a3fdf 100644 --- a/scores/rus-mkd/flores101-dev/bleu-scores.txt +++ b/scores/rus-mkd/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +23.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 17.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 17.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 17.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-mkd/flores101-dev/chrf-scores.txt b/scores/rus-mkd/flores101-dev/chrf-scores.txt index f09f02bb..18a28d84 100644 --- a/scores/rus-mkd/flores101-dev/chrf-scores.txt +++ b/scores/rus-mkd/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54605 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.490 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.489 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.485 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-mkd/flores101-devtest/bleu-scores.txt b/scores/rus-mkd/flores101-devtest/bleu-scores.txt index 14235984..68c83752 100644 --- a/scores/rus-mkd/flores101-devtest/bleu-scores.txt +++ b/scores/rus-mkd/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +24.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 18.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 18.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 18.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-mkd/flores101-devtest/chrf-scores.txt b/scores/rus-mkd/flores101-devtest/chrf-scores.txt index bf703cf7..0c5a3e43 100644 --- a/scores/rus-mkd/flores101-devtest/chrf-scores.txt +++ b/scores/rus-mkd/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.55397 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.493 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.489 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-nob/flores101-dev/bleu-scores.txt b/scores/rus-nob/flores101-dev/bleu-scores.txt index 0cc04279..f575cb19 100644 --- a/scores/rus-nob/flores101-dev/bleu-scores.txt +++ b/scores/rus-nob/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 16.3 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 10.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 10.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/flores101-dev/chrf-scores.txt b/scores/rus-nob/flores101-dev/chrf-scores.txt index 47b7df4c..a1ce3060 100644 --- a/scores/rus-nob/flores101-dev/chrf-scores.txt +++ b/scores/rus-nob/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50953 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.446 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 0.388 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.383 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/flores101-devtest/bleu-scores.txt b/scores/rus-nob/flores101-devtest/bleu-scores.txt index 82e47a07..e7738422 100644 --- a/scores/rus-nob/flores101-devtest/bleu-scores.txt +++ b/scores/rus-nob/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 10.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/flores101-devtest/chrf-scores.txt b/scores/rus-nob/flores101-devtest/chrf-scores.txt index d93ad117..5ed1b5e9 100644 --- a/scores/rus-nob/flores101-devtest/chrf-scores.txt +++ b/scores/rus-nob/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50724 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 0.383 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.377 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-nob/tatoeba-test-v2020-07-28/bleu-scores.txt index da45584a..39871e51 100644 --- a/scores/rus-nob/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +46.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 40.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 31.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-nob/tatoeba-test-v2020-07-28/chrf-scores.txt index e90d3330..04183130 100644 --- a/scores/rus-nob/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.603 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 0.526 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.512 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-nob/tatoeba-test-v2021-03-30/bleu-scores.txt index da45584a..39871e51 100644 --- a/scores/rus-nob/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +46.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 40.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 31.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-nob/tatoeba-test-v2021-03-30/chrf-scores.txt index e90d3330..04183130 100644 --- a/scores/rus-nob/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.603 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 0.526 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.512 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-nob/tatoeba-test-v2021-08-07/bleu-scores.txt index da45584a..39871e51 100644 --- a/scores/rus-nob/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +46.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 40.2 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 31.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 29.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-nob/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-nob/tatoeba-test-v2021-08-07/chrf-scores.txt index 4c819771..b941bae4 100644 --- a/scores/rus-nob/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-nob/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66376 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.603 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-nor/opus-2021-02-24.zip 0.526 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.513 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-slv/flores101-dev/bleu-scores.txt b/scores/rus-slv/flores101-dev/bleu-scores.txt index d1ac47c8..a8a204fa 100644 --- a/scores/rus-slv/flores101-dev/bleu-scores.txt +++ b/scores/rus-slv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 18.4 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-slv/flores101-dev/chrf-scores.txt b/scores/rus-slv/flores101-dev/chrf-scores.txt index 33caa0ee..6fa32885 100644 --- a/scores/rus-slv/flores101-dev/chrf-scores.txt +++ b/scores/rus-slv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52703 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.464 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.449 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-slv/flores101-devtest/bleu-scores.txt b/scores/rus-slv/flores101-devtest/bleu-scores.txt index d2b2b476..30918cd5 100644 --- a/scores/rus-slv/flores101-devtest/bleu-scores.txt +++ b/scores/rus-slv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +23.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 14.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-slv/flores101-devtest/chrf-scores.txt b/scores/rus-slv/flores101-devtest/chrf-scores.txt index 81dc6496..d7bcf37e 100644 --- a/scores/rus-slv/flores101-devtest/chrf-scores.txt +++ b/scores/rus-slv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52199 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 0.442 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.441 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-slv/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-slv/tatoeba-test-v2020-07-28/bleu-scores.txt index dce2a549..d9193f60 100644 --- a/scores/rus-slv/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +34.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 32.3 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 30.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 30.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/rus-slv/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-slv/tatoeba-test-v2020-07-28/chrf-scores.txt index 7e4d0a6f..4acca47a 100644 --- a/scores/rus-slv/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.51099 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.491 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 0.482 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.478 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-slv/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-slv/tatoeba-test-v2021-03-30/bleu-scores.txt index c8f2ff2a..0972ff23 100644 --- a/scores/rus-slv/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +33.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 30.5 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 29.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 29.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-slv/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-slv/tatoeba-test-v2021-03-30/chrf-scores.txt index 04fda2a6..4ebaacae 100644 --- a/scores/rus-slv/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50308 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.474 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 0.473 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.468 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-slv/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-slv/tatoeba-test-v2021-08-07/bleu-scores.txt index 476192c7..f331ff0a 100644 --- a/scores/rus-slv/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +21.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 19.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 18.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 18.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip diff --git a/scores/rus-slv/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-slv/tatoeba-test-v2021-08-07/chrf-scores.txt index 94e983ff..3bdacc82 100644 --- a/scores/rus-slv/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-slv/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.38130 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.364 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-slv/opus-2021-02-19.zip 0.358 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.356 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt index 8133ade5..908fec44 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 43.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 41.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt index a15050c1..1fff981c 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66726 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.637 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.635 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.629 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt index 8133ade5..908fec44 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 43.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 41.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt index a15050c1..1fff981c 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66726 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.637 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.635 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.629 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt index 8133ade5..908fec44 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 43.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 41.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt index a15050c1..1fff981c 100644 --- a/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66726 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.637 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.635 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.629 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt index 2c7a52e5..0711d88d 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +51.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 45.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt index 7cb85452..148566dc 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70924 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.662 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.660 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt index 2c7a52e5..0711d88d 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +51.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 45.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt index 7cb85452..148566dc 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70924 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.662 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.660 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt index e2e2d58a..50620ee9 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +51.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 45.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt index 7cb85452..c7dddde0 100644 --- a/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70954 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.662 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.660 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/rus-swe/flores101-dev/bleu-scores.txt b/scores/rus-swe/flores101-dev/bleu-scores.txt index 2160bce8..e7cfad7c 100644 --- a/scores/rus-swe/flores101-dev/bleu-scores.txt +++ b/scores/rus-swe/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +27.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 20.9 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 12.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 11.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/flores101-dev/chrf-scores.txt b/scores/rus-swe/flores101-dev/chrf-scores.txt index 45f13879..dff452d7 100644 --- a/scores/rus-swe/flores101-dev/chrf-scores.txt +++ b/scores/rus-swe/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.56381 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 0.405 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.397 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/flores101-devtest/bleu-scores.txt b/scores/rus-swe/flores101-devtest/bleu-scores.txt index 8ff077a5..94aaaaf5 100644 --- a/scores/rus-swe/flores101-devtest/bleu-scores.txt +++ b/scores/rus-swe/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +26.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 19.6 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 11.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 11.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/flores101-devtest/chrf-scores.txt b/scores/rus-swe/flores101-devtest/chrf-scores.txt index dd221f45..452eb6a5 100644 --- a/scores/rus-swe/flores101-devtest/chrf-scores.txt +++ b/scores/rus-swe/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.55812 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.481 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 0.400 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.389 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/rus-swe/tatoeba-test-v2020-07-28/bleu-scores.txt index b35c5517..852df55a 100644 --- a/scores/rus-swe/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +53.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 51.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 31.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/rus-swe/tatoeba-test-v2020-07-28/chrf-scores.txt index 14eb2f02..94768d2c 100644 --- a/scores/rus-swe/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69608 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/rus-swe/tatoeba-test-v2021-03-30/bleu-scores.txt index b35c5517..852df55a 100644 --- a/scores/rus-swe/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +53.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 51.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 31.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/rus-swe/tatoeba-test-v2021-03-30/chrf-scores.txt index 14eb2f02..94768d2c 100644 --- a/scores/rus-swe/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69608 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/rus-swe/tatoeba-test-v2021-08-07/bleu-scores.txt index b35c5517..852df55a 100644 --- a/scores/rus-swe/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +53.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 51.8 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 31.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/rus-swe/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/rus-swe/tatoeba-test-v2021-08-07/chrf-scores.txt index 34cdc4fb..b653aa91 100644 --- a/scores/rus-swe/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/rus-swe/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69608 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.676 https://object.pouta.csc.fi/Tatoeba-MT-models/rus-swe/opus-2021-02-18.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.494 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/slk-eng/flores101-dev/bleu-scores.txt b/scores/slk-eng/flores101-dev/bleu-scores.txt index b20de821..0f66cbdf 100644 --- a/scores/slk-eng/flores101-dev/bleu-scores.txt +++ b/scores/slk-eng/flores101-dev/bleu-scores.txt @@ -1,2 +1,4 @@ +40.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 40.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +40.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 33.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/slk-eng/flores101-dev/chrf-scores.txt b/scores/slk-eng/flores101-dev/chrf-scores.txt index 25c23447..61213ee3 100644 --- a/scores/slk-eng/flores101-dev/chrf-scores.txt +++ b/scores/slk-eng/flores101-dev/chrf-scores.txt @@ -1,2 +1,4 @@ +0.66564 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.66550 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip +0.66379 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/slk-eng/flores101-devtest/bleu-scores.txt b/scores/slk-eng/flores101-devtest/bleu-scores.txt index 32729aec..128805c8 100644 --- a/scores/slk-eng/flores101-devtest/bleu-scores.txt +++ b/scores/slk-eng/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +40.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 40.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 32.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/slk-eng/flores101-devtest/chrf-scores.txt b/scores/slk-eng/flores101-devtest/chrf-scores.txt index 68579267..e9c529cc 100644 --- a/scores/slk-eng/flores101-devtest/chrf-scores.txt +++ b/scores/slk-eng/flores101-devtest/chrf-scores.txt @@ -1,2 +1,4 @@ +0.66103 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip +0.66084 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.65986 https://object.pouta.csc.fi/Tatoeba-MT-models/ces+slk-eng/opusTCv20210807+bt_transformer-big_2022-03-13.zip 0.613 https://object.pouta.csc.fi/Tatoeba-MT-models/zlw-eng/opus4m+btTCv20210807-2021-10-01.zip diff --git a/scores/slv-bel/flores101-dev/bleu-scores.txt b/scores/slv-bel/flores101-dev/bleu-scores.txt index d2aab713..00fc0fe1 100644 --- a/scores/slv-bel/flores101-dev/bleu-scores.txt +++ b/scores/slv-bel/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +5.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 5.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 5.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 4.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/slv-bel/flores101-dev/chrf-scores.txt b/scores/slv-bel/flores101-dev/chrf-scores.txt index 33852220..1494c367 100644 --- a/scores/slv-bel/flores101-dev/chrf-scores.txt +++ b/scores/slv-bel/flores101-dev/chrf-scores.txt @@ -4,3 +4,4 @@ 0.305 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.298 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.291 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.26059 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip diff --git a/scores/slv-bel/flores101-devtest/chrf-scores.txt b/scores/slv-bel/flores101-devtest/chrf-scores.txt index 09510f93..0d99ea77 100644 --- a/scores/slv-bel/flores101-devtest/chrf-scores.txt +++ b/scores/slv-bel/flores101-devtest/chrf-scores.txt @@ -3,3 +3,4 @@ 0.308 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.295 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.288 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.25050 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip diff --git a/scores/slv-eng/flores101-dev/bleu-scores.txt b/scores/slv-eng/flores101-dev/bleu-scores.txt index fd99ebca..d2752eeb 100644 --- a/scores/slv-eng/flores101-dev/bleu-scores.txt +++ b/scores/slv-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +35.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 31.1 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-eng/opus-2021-02-19.zip 29.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 29.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/flores101-dev/chrf-scores.txt b/scores/slv-eng/flores101-dev/chrf-scores.txt index 210c100c..6e3e2749 100644 --- a/scores/slv-eng/flores101-dev/chrf-scores.txt +++ b/scores/slv-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.62309 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.598 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-eng/opus-2021-02-19.zip 0.587 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.579 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/flores101-devtest/bleu-scores.txt b/scores/slv-eng/flores101-devtest/bleu-scores.txt index 02661c9e..615f9f63 100644 --- a/scores/slv-eng/flores101-devtest/bleu-scores.txt +++ b/scores/slv-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +35.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 30.6 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-eng/opus-2021-02-19.zip 29.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 28.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/flores101-devtest/chrf-scores.txt b/scores/slv-eng/flores101-devtest/chrf-scores.txt index 6606d5e8..5a687e2c 100644 --- a/scores/slv-eng/flores101-devtest/chrf-scores.txt +++ b/scores/slv-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.62087 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.591 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-eng/opus-2021-02-19.zip 0.578 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.574 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/slv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 2735981e..de800938 100644 --- a/scores/slv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -12,6 +12,7 @@ 34.7 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 29.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 28.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +26.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 26.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 25.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 25.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/slv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index b748c527..02fd8d40 100644 --- a/scores/slv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -12,6 +12,7 @@ 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 0.487 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.469 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.42882 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.414 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.411 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-06-28.zip 0.407 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-07-27.zip diff --git a/scores/slv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/slv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 2735981e..de800938 100644 --- a/scores/slv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -12,6 +12,7 @@ 34.7 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 29.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 28.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +26.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 26.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 25.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 25.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip diff --git a/scores/slv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/slv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index b748c527..02fd8d40 100644 --- a/scores/slv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -12,6 +12,7 @@ 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 0.487 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.469 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.42882 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.414 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.411 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-06-28.zip 0.407 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-07-27.zip diff --git a/scores/slv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/slv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index dfddb2d0..5ef3331d 100644 --- a/scores/slv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -13,6 +13,7 @@ 32.8 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 28.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 26.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +23.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 22.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 22.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip 22.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/slv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/slv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 2fc2785b..5f8b9457 100644 --- a/scores/slv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/slv-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -13,6 +13,7 @@ 0.506 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-14.zip 0.473 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.456 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.39534 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.382 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m+btTCv20210807-2021-10-01.zip 0.380 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus4m-2020-08-12.zip 0.379 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-06-28.zip diff --git a/scores/slv-rus/flores101-dev/bleu-scores.txt b/scores/slv-rus/flores101-dev/bleu-scores.txt index 373fb360..8f3c1202 100644 --- a/scores/slv-rus/flores101-dev/bleu-scores.txt +++ b/scores/slv-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.9 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 14.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/slv-rus/flores101-dev/chrf-scores.txt b/scores/slv-rus/flores101-dev/chrf-scores.txt index d62f4b74..7221ed96 100644 --- a/scores/slv-rus/flores101-dev/chrf-scores.txt +++ b/scores/slv-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50240 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.438 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 0.426 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.424 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/slv-rus/flores101-devtest/bleu-scores.txt b/scores/slv-rus/flores101-devtest/bleu-scores.txt index 97fc2c23..1255b85e 100644 --- a/scores/slv-rus/flores101-devtest/bleu-scores.txt +++ b/scores/slv-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 14.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 14.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/slv-rus/flores101-devtest/chrf-scores.txt b/scores/slv-rus/flores101-devtest/chrf-scores.txt index cb4dcbc7..2953ccf9 100644 --- a/scores/slv-rus/flores101-devtest/chrf-scores.txt +++ b/scores/slv-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.50313 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 0.426 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.423 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/slv-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/slv-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 4c607b35..0bd54725 100644 --- a/scores/slv-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -2,6 +2,7 @@ 46.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 45.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +41.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 36.9 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 32.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 31.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/slv-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/slv-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 69cbdbca..18c8e3b8 100644 --- a/scores/slv-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -2,6 +2,7 @@ 0.639 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.637 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.629 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +0.55741 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.516 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 0.504 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/slv-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/slv-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 86b6d154..242fb9a4 100644 --- a/scores/slv-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -2,6 +2,7 @@ 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 44.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 43.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +40.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 34.5 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip 32.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 31.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/slv-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/slv-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index e0202a0d..359afc0a 100644 --- a/scores/slv-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -2,6 +2,7 @@ 0.625 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.621 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.616 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip +0.54523 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.516 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip 0.484 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip diff --git a/scores/slv-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/slv-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index fb54d152..04556363 100644 --- a/scores/slv-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -3,5 +3,6 @@ 37.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 35.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 27.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip +26.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 26.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip 18.5 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip diff --git a/scores/slv-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/slv-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 756a2352..0772b7cd 100644 --- a/scores/slv-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/slv-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -2,4 +2,5 @@ 0.572 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.473 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.457 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.42048 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.356 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-rus/opus-2021-02-18.zip diff --git a/scores/slv-ukr/flores101-dev/bleu-scores.txt b/scores/slv-ukr/flores101-dev/bleu-scores.txt index e3f3bd4e..4073f5dc 100644 --- a/scores/slv-ukr/flores101-dev/bleu-scores.txt +++ b/scores/slv-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +19.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 12.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 12.6 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip 12.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/slv-ukr/flores101-dev/chrf-scores.txt b/scores/slv-ukr/flores101-dev/chrf-scores.txt index d5682631..acd47814 100644 --- a/scores/slv-ukr/flores101-dev/chrf-scores.txt +++ b/scores/slv-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.48618 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.414 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.408 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.404 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/flores101-devtest/bleu-scores.txt b/scores/slv-ukr/flores101-devtest/bleu-scores.txt index cc84e09a..5289eaaa 100644 --- a/scores/slv-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/slv-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 13.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 12.9 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip 12.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/slv-ukr/flores101-devtest/chrf-scores.txt b/scores/slv-ukr/flores101-devtest/chrf-scores.txt index 567cc655..9b1b5a02 100644 --- a/scores/slv-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/slv-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49053 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.419 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.417 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.416 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/slv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/slv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 7dd44efd..5f5e2a85 100644 --- a/scores/slv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -4,4 +4,5 @@ 30.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 29.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +18.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 11.0 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/slv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index 320ceb8c..e588ed4e 100644 --- a/scores/slv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -4,4 +4,5 @@ 0.535 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.463 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.446 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.32953 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.240 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/slv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index c4f0acbe..db7bf7a9 100644 --- a/scores/slv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -4,4 +4,5 @@ 30.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 28.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 26.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +17.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 10.8 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/slv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 948bead5..6cba0e14 100644 --- a/scores/slv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -4,4 +4,5 @@ 0.535 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.461 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.32629 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.239 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/slv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index 9ad3f464..10f7f4f0 100644 --- a/scores/slv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -3,4 +3,5 @@ 33.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 27.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 26.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +15.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 9.8 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/slv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/slv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 4f326e71..a98ed1f0 100644 --- a/scores/slv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/slv-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -4,4 +4,5 @@ 0.526 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.451 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.437 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.31531 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.230 https://object.pouta.csc.fi/Tatoeba-MT-models/slv-ukr/opus-2021-02-19.zip diff --git a/scores/spa-bel/flores101-dev/bleu-scores.txt b/scores/spa-bel/flores101-dev/bleu-scores.txt index bb3559bf..fc72c686 100644 --- a/scores/spa-bel/flores101-dev/bleu-scores.txt +++ b/scores/spa-bel/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +7.4 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 6.7 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 4.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/flores101-dev/chrf-scores.txt b/scores/spa-bel/flores101-dev/chrf-scores.txt index cb8d7234..ea156066 100644 --- a/scores/spa-bel/flores101-dev/chrf-scores.txt +++ b/scores/spa-bel/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.36112 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.35267 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.295 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.292 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/flores101-devtest/bleu-scores.txt b/scores/spa-bel/flores101-devtest/bleu-scores.txt index 4546bd9e..5e9253c7 100644 --- a/scores/spa-bel/flores101-devtest/bleu-scores.txt +++ b/scores/spa-bel/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +7.4 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 7.2 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 4.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 4.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/flores101-devtest/chrf-scores.txt b/scores/spa-bel/flores101-devtest/chrf-scores.txt index 146584c0..69aa78cc 100644 --- a/scores/spa-bel/flores101-devtest/chrf-scores.txt +++ b/scores/spa-bel/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.36271 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.35706 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.296 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.290 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/spa-bel/tatoeba-test-v2020-07-28/bleu-scores.txt index ac9b42c7..e4ef513c 100644 --- a/scores/spa-bel/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +25.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 23.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 22.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 19.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/spa-bel/tatoeba-test-v2020-07-28/chrf-scores.txt index bed09bcf..e33e9448 100644 --- a/scores/spa-bel/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53052 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.51163 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.432 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/spa-bel/tatoeba-test-v2021-03-30/bleu-scores.txt index e8cefb75..eedb3435 100644 --- a/scores/spa-bel/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +25.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 22.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 19.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/spa-bel/tatoeba-test-v2021-03-30/chrf-scores.txt index b49a861b..ca83336d 100644 --- a/scores/spa-bel/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52842 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.51078 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.433 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/spa-bel/tatoeba-test-v2021-08-07/bleu-scores.txt index ac9b42c7..e4ef513c 100644 --- a/scores/spa-bel/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +25.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 23.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 22.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 19.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-bel/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/spa-bel/tatoeba-test-v2021-08-07/chrf-scores.txt index bed09bcf..e33e9448 100644 --- a/scores/spa-bel/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/spa-bel/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53052 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.51163 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.432 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-rus/flores101-dev/bleu-scores.txt b/scores/spa-rus/flores101-dev/bleu-scores.txt index b474370c..ea04a1fd 100644 --- a/scores/spa-rus/flores101-dev/bleu-scores.txt +++ b/scores/spa-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +20.2 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 19.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 15.9 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 8.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/flores101-dev/chrf-scores.txt b/scores/spa-rus/flores101-dev/chrf-scores.txt index 64d46b38..c78ce014 100644 --- a/scores/spa-rus/flores101-dev/chrf-scores.txt +++ b/scores/spa-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49656 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.49303 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.450 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.357 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/flores101-devtest/bleu-scores.txt b/scores/spa-rus/flores101-devtest/bleu-scores.txt index b8ce187f..6581ac60 100644 --- a/scores/spa-rus/flores101-devtest/bleu-scores.txt +++ b/scores/spa-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 19.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 16.3 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 7.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/spa-rus/flores101-devtest/chrf-scores.txt b/scores/spa-rus/flores101-devtest/chrf-scores.txt index 932a7361..56c583af 100644 --- a/scores/spa-rus/flores101-devtest/chrf-scores.txt +++ b/scores/spa-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.49667 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.49553 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.451 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.359 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/newstest2012/bleu-scores.txt b/scores/spa-rus/newstest2012/bleu-scores.txt index 31be809e..5fc94040 100644 --- a/scores/spa-rus/newstest2012/bleu-scores.txt +++ b/scores/spa-rus/newstest2012/bleu-scores.txt @@ -1,3 +1,4 @@ +24.6 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 24.4 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 20.3 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 12.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/newstest2012/chrf-scores.txt b/scores/spa-rus/newstest2012/chrf-scores.txt index 5abb0ff9..4a9a010a 100644 --- a/scores/spa-rus/newstest2012/chrf-scores.txt +++ b/scores/spa-rus/newstest2012/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52429 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.52246 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.485 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.399 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/newstest2013/bleu-scores.txt b/scores/spa-rus/newstest2013/bleu-scores.txt index a4aedb16..cb318bcf 100644 --- a/scores/spa-rus/newstest2013/bleu-scores.txt +++ b/scores/spa-rus/newstest2013/bleu-scores.txt @@ -1,3 +1,4 @@ +27.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 26.8 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 22.6 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 13.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/newstest2013/chrf-scores.txt b/scores/spa-rus/newstest2013/chrf-scores.txt index eb275541..9b2c0667 100644 --- a/scores/spa-rus/newstest2013/chrf-scores.txt +++ b/scores/spa-rus/newstest2013/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54279 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.54208 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.498 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.408 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/spa-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 33028968..cefff9d2 100644 --- a/scores/spa-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +48.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 48.8 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 46.0 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 29.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/spa-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 4a076489..a528ea22 100644 --- a/scores/spa-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68381 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.68200 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.653 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/spa-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 35e0c0bb..09d2361c 100644 --- a/scores/spa-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +48.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 48.7 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 46.0 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 29.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/spa-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index 7c230da2..e00f53d6 100644 --- a/scores/spa-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68311 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.68136 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.506 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/spa-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index ed81893a..27310eb2 100644 --- a/scores/spa-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +48.9 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 48.8 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 46.0 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 29.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/spa-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 05599fc5..ec980d59 100644 --- a/scores/spa-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/spa-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68379 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.68226 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.652 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/flores101-dev/bleu-scores.txt b/scores/spa-ukr/flores101-dev/bleu-scores.txt index 32ff614b..63eba9d3 100644 --- a/scores/spa-ukr/flores101-dev/bleu-scores.txt +++ b/scores/spa-ukr/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 17.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip +17.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 10.8 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 10.5 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 7.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/flores101-dev/chrf-scores.txt b/scores/spa-ukr/flores101-dev/chrf-scores.txt index 552211ea..0eaef2eb 100644 --- a/scores/spa-ukr/flores101-dev/chrf-scores.txt +++ b/scores/spa-ukr/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.47458 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip +0.47437 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.396 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.389 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 0.345 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/flores101-devtest/bleu-scores.txt b/scores/spa-ukr/flores101-devtest/bleu-scores.txt index 89315149..cc1fb128 100644 --- a/scores/spa-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/spa-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +17.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 17.2 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 11.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 11.0 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip diff --git a/scores/spa-ukr/flores101-devtest/chrf-scores.txt b/scores/spa-ukr/flores101-devtest/chrf-scores.txt index 45d64e9f..577c3a7d 100644 --- a/scores/spa-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/spa-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.47717 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.47533 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.398 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 0.389 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip diff --git a/scores/spa-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/spa-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 6d3ecb49..81a55e21 100644 --- a/scores/spa-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,4 @@ -42.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip +42.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 41.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 38.4 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 27.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/spa-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index bc1d3ca3..7f50fc7d 100644 --- a/scores/spa-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.63230 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.63218 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 0.594 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip diff --git a/scores/spa-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/spa-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index f01ecc95..a72eebd2 100644 --- a/scores/spa-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,4 @@ -42.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip +42.0 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 41.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 38.4 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 28.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/spa-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 7c4cb4cb..0e2a7274 100644 --- a/scores/spa-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.63244 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.63228 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 0.594 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip diff --git a/scores/spa-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/spa-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index c362943c..a56e19ba 100644 --- a/scores/spa-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,4 @@ -42.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip +42.1 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 41.3 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 38.4 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip 28.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/spa-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/spa-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 42f11588..00e34820 100644 --- a/scores/spa-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/spa-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.63347 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-17.zip 0.63336 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-zle/opusTCv20210807_transformer-big_2022-03-14.zip 0.615 https://object.pouta.csc.fi/Tatoeba-MT-models/spa-ukr/opus-2021-02-18.zip 0.594 https://object.pouta.csc.fi/Tatoeba-MT-models/roa-zle/opus1m-2021-02-18.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 84cce3f4..fb5e03cc 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -9,6 +9,7 @@ 47.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-19.zip 47.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-14.zip 47.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 46.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.7 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus2m-2020-08-12.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index ca1df8bb..221fa36f 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,5 +1,6 @@ 0.68232 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip +0.67610 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.675 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-07-27.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 84cce3f4..fb5e03cc 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -9,6 +9,7 @@ 47.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-19.zip 47.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-14.zip 47.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 46.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.7 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus2m-2020-08-12.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index ca1df8bb..221fa36f 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,5 +1,6 @@ 0.68232 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip +0.67610 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.675 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-07-27.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 14e4c47c..2ece2b59 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -9,6 +9,7 @@ 47.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-19.zip 47.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-eng/opus-2020-07-14.zip 47.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +47.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 46.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 44.7 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus2m-2020-08-12.zip diff --git a/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 3a13e9d2..cefbbdeb 100644 --- a/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Cyrl-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,5 +1,6 @@ 0.68248 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip +0.67628 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.676 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus-2020-07-27.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 035bfa91..88da7152 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +55.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 49.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index a94a23d5..9d13072c 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74107 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.686 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.679 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 035bfa91..88da7152 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +55.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 49.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index a94a23d5..9d13072c 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74107 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.686 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.679 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index 035bfa91..88da7152 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +55.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 49.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 49.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 48.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index fa416207..57eb9c55 100644 --- a/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Cyrl-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74107 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.686 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.679 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index 9410e0ea..6d56658a 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ 55.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +54.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 53.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index 7ea0bc76..d7bfb75e 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70088 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.699 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.689 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.686 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index 8ef514a6..60f1797b 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ 55.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 53.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 50.8 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index 9f2853bb..0c66be1d 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70142 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.698 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.689 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.685 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index 448e9b15..b187ee8b 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 55.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +53.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 53.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 52.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 2c7d78e6..61539230 100644 --- a/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Cyrl-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69894 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.697 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.684 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index 42e851b6..4307c7d9 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 56.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 61628e17..8e6c16ec 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71877 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71785 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.700 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 42e851b6..4307c7d9 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 56.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index da621722..985db6a9 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71878 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71786 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.700 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 820bb51e..12359aa1 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 56.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opus2m-2020-08-01.zip diff --git a/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 3cdd2e7b..a86b4cac 100644 --- a/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Latn-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71878 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.71781 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-eng/opusTCv20210807+bt_transformer-big_2022-02-25.zip 0.701 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip 0.700 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 58e77d3a..b93702fd 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index 23e06764..1140104b 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.75971 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.729 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 58e77d3a..b93702fd 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index 23e06764..1140104b 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.75971 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.729 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index b15959be..5ad103e2 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index 23e06764..1140104b 100644 --- a/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Latn-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.75971 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.729 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.719 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt index c4354ed8..828b2148 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,6 +1,7 @@ 57.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 56.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 54.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt index 5c0b167e..2600e5e9 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.738 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +0.73243 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.716 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.713 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt index 2a4238e2..09ccf865 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -2,6 +2,7 @@ 56.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 54.5 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 37.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt index beaca1a3..c0d17908 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.740 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +0.73264 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.727 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.718 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.714 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt index c4354ed8..828b2148 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,6 +1,7 @@ 57.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 56.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip +55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 54.4 https://object.pouta.csc.fi/Tatoeba-MT-models/hbs-ukr/opus-2020-06-17.zip 40.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt index 5c0b167e..2600e5e9 100644 --- a/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/srp_Latn-ukr/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.738 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +0.73243 https://object.pouta.csc.fi/Tatoeba-MT-models/zls-zle/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.716 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.713 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/swe-bel/flores101-dev/bleu-scores.txt b/scores/swe-bel/flores101-dev/bleu-scores.txt index 5839e6ed..de45d181 100644 --- a/scores/swe-bel/flores101-dev/bleu-scores.txt +++ b/scores/swe-bel/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +8.6 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 4.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-bel/flores101-dev/chrf-scores.txt b/scores/swe-bel/flores101-dev/chrf-scores.txt index 31e18853..7cc7530e 100644 --- a/scores/swe-bel/flores101-dev/chrf-scores.txt +++ b/scores/swe-bel/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.37942 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.293 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.287 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-bel/flores101-devtest/bleu-scores.txt b/scores/swe-bel/flores101-devtest/bleu-scores.txt index 6917bdf9..52fc71d8 100644 --- a/scores/swe-bel/flores101-devtest/bleu-scores.txt +++ b/scores/swe-bel/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +9.3 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 4.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 3.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-bel/flores101-devtest/chrf-scores.txt b/scores/swe-bel/flores101-devtest/chrf-scores.txt index 99e30b9a..836cff27 100644 --- a/scores/swe-bel/flores101-devtest/chrf-scores.txt +++ b/scores/swe-bel/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.38797 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.292 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.286 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/flores101-dev/bleu-scores.txt b/scores/swe-rus/flores101-dev/bleu-scores.txt index 5c058b89..33a105bd 100644 --- a/scores/swe-rus/flores101-dev/bleu-scores.txt +++ b/scores/swe-rus/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +25.7 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 17.8 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 10.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 10.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/flores101-dev/chrf-scores.txt b/scores/swe-rus/flores101-dev/chrf-scores.txt index 00309db2..4766f194 100644 --- a/scores/swe-rus/flores101-dev/chrf-scores.txt +++ b/scores/swe-rus/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53154 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.454 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 0.370 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.363 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/flores101-devtest/bleu-scores.txt b/scores/swe-rus/flores101-devtest/bleu-scores.txt index d12aff6c..05c0afa7 100644 --- a/scores/swe-rus/flores101-devtest/bleu-scores.txt +++ b/scores/swe-rus/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +24.9 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 18.6 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 9.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/flores101-devtest/chrf-scores.txt b/scores/swe-rus/flores101-devtest/chrf-scores.txt index 62808fcd..6cf04151 100644 --- a/scores/swe-rus/flores101-devtest/chrf-scores.txt +++ b/scores/swe-rus/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52584 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.457 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 0.367 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.356 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/swe-rus/tatoeba-test-v2020-07-28/bleu-scores.txt index 491d95b2..6274f365 100644 --- a/scores/swe-rus/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ 45.7 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 28.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/swe-rus/tatoeba-test-v2020-07-28/chrf-scores.txt index a0ece777..766caedb 100644 --- a/scores/swe-rus/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66065 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.653 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 0.488 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.477 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/swe-rus/tatoeba-test-v2021-03-30/bleu-scores.txt index 491d95b2..6274f365 100644 --- a/scores/swe-rus/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ 45.7 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 28.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/swe-rus/tatoeba-test-v2021-03-30/chrf-scores.txt index a0ece777..766caedb 100644 --- a/scores/swe-rus/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66065 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.653 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 0.488 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.477 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/swe-rus/tatoeba-test-v2021-08-07/bleu-scores.txt index b9896113..4e0a9653 100644 --- a/scores/swe-rus/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ 45.8 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip +45.2 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 28.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-rus/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/swe-rus/tatoeba-test-v2021-08-07/chrf-scores.txt index a0ece777..766caedb 100644 --- a/scores/swe-rus/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/swe-rus/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.66065 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.653 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-rus/opus-2021-02-18.zip 0.488 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.477 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-ukr/flores101-dev/bleu-scores.txt b/scores/swe-ukr/flores101-dev/bleu-scores.txt index 1f130ac6..682b30db 100644 --- a/scores/swe-ukr/flores101-dev/bleu-scores.txt +++ b/scores/swe-ukr/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.5 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 23.5 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 9.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-ukr/flores101-dev/chrf-scores.txt b/scores/swe-ukr/flores101-dev/chrf-scores.txt index 1466b91f..9e2d35ae 100644 --- a/scores/swe-ukr/flores101-dev/chrf-scores.txt +++ b/scores/swe-ukr/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53116 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.52149 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.359 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.348 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-ukr/flores101-devtest/bleu-scores.txt b/scores/swe-ukr/flores101-devtest/bleu-scores.txt index bef97e74..b793c5cc 100644 --- a/scores/swe-ukr/flores101-devtest/bleu-scores.txt +++ b/scores/swe-ukr/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +25.1 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 24.8 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/swe-ukr/flores101-devtest/chrf-scores.txt b/scores/swe-ukr/flores101-devtest/chrf-scores.txt index cb2efb24..cc1e6f1b 100644 --- a/scores/swe-ukr/flores101-devtest/chrf-scores.txt +++ b/scores/swe-ukr/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53774 https://object.pouta.csc.fi/Tatoeba-MT-models/gmq-zle/opusTCv20210807+pbt_transformer-big_2022-03-14.zip 0.53176 https://object.pouta.csc.fi/Tatoeba-MT-models/swe-ukr/opusTCv20210807+pbt_transformer-align_2022-03-07.zip 0.363 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.351 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/tur-eng/flores101-dev/bleu-scores.txt b/scores/tur-eng/flores101-dev/bleu-scores.txt index d66a7476..209123f6 100644 --- a/scores/tur-eng/flores101-dev/bleu-scores.txt +++ b/scores/tur-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +38.6 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 35.5 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 32.3 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 18.6 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-20.zip diff --git a/scores/tur-eng/flores101-dev/chrf-scores.txt b/scores/tur-eng/flores101-dev/chrf-scores.txt index a48ca5d2..fa2fd0c7 100644 --- a/scores/tur-eng/flores101-dev/chrf-scores.txt +++ b/scores/tur-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65106 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.630 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 0.601 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-20.zip diff --git a/scores/tur-eng/flores101-devtest/bleu-scores.txt b/scores/tur-eng/flores101-devtest/bleu-scores.txt index f9cbbae7..1c211630 100644 --- a/scores/tur-eng/flores101-devtest/bleu-scores.txt +++ b/scores/tur-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +37.6 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 34.7 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 31.3 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 18.0 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-20.zip diff --git a/scores/tur-eng/flores101-devtest/chrf-scores.txt b/scores/tur-eng/flores101-devtest/chrf-scores.txt index 944b435f..01a93a15 100644 --- a/scores/tur-eng/flores101-devtest/chrf-scores.txt +++ b/scores/tur-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.64152 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.618 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 0.592 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 0.444 https://object.pouta.csc.fi/Tatoeba-MT-models/mul-eng/opus-2020-07-20.zip diff --git a/scores/tur-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/tur-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index a07b990a..2b5ffb0a 100644 --- a/scores/tur-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +60.6 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 58.8 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 58.5 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 43.6 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/tur-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/tur-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index bd164ede..abdaf378 100644 --- a/scores/tur-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.74262 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.728 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 0.726 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 0.608 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/tur-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/tur-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 07fbfb91..4b9759a9 100644 --- a/scores/tur-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +59.2 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 57.5 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 57.3 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 42.3 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/tur-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/tur-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 11fd8aeb..e1c19c74 100644 --- a/scores/tur-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.73148 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.717 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 0.715 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 0.596 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/tur-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/tur-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index 7e8531d1..1ce7cf3b 100644 --- a/scores/tur-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +57.6 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 40.6 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/tur-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/tur-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 03ab0d67..8d7d119f 100644 --- a/scores/tur-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/tur-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71895 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.705 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus+bt-2021-04-30.zip 0.704 https://object.pouta.csc.fi/Tatoeba-MT-models/tur-eng/opus-2021-02-18.zip 0.580 https://object.pouta.csc.fi/Tatoeba-MT-models/trk-eng/opus1m+bt-2021-05-01.zip diff --git a/scores/ukr-bul/flores101-dev/bleu-scores.txt b/scores/ukr-bul/flores101-dev/bleu-scores.txt index a418faf5..5ee87e20 100644 --- a/scores/ukr-bul/flores101-dev/bleu-scores.txt +++ b/scores/ukr-bul/flores101-dev/bleu-scores.txt @@ -1,3 +1,5 @@ +30.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip +30.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opus-2021-02-18.zip 21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-bul/flores101-dev/chrf-scores.txt b/scores/ukr-bul/flores101-dev/chrf-scores.txt index df0f0214..5a0a0627 100644 --- a/scores/ukr-bul/flores101-dev/chrf-scores.txt +++ b/scores/ukr-bul/flores101-dev/chrf-scores.txt @@ -1,3 +1,5 @@ +0.59287 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip +0.58814 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.524 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.519 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.515 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-bul/flores101-devtest/bleu-scores.txt b/scores/ukr-bul/flores101-devtest/bleu-scores.txt index 7940d066..a3594ddf 100644 --- a/scores/ukr-bul/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-bul/flores101-devtest/bleu-scores.txt @@ -1,3 +1,5 @@ +30.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip +30.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 21.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opus-2021-02-18.zip 21.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-bul/flores101-devtest/chrf-scores.txt b/scores/ukr-bul/flores101-devtest/chrf-scores.txt index 6204c75a..c8b6c222 100644 --- a/scores/ukr-bul/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-bul/flores101-devtest/chrf-scores.txt @@ -1,3 +1,5 @@ +0.59782 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip +0.58905 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.523 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.521 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.515 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-bul/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-bul/tatoeba-test-v2020-07-28/bleu-scores.txt index 4869f5ca..f9a131ca 100644 --- a/scores/ukr-bul/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,5 +1,7 @@ +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +56.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opus-2021-02-18.zip 55.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 39.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-bul/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-bul/tatoeba-test-v2020-07-28/chrf-scores.txt index bc20d0a6..921101a8 100644 --- a/scores/ukr-bul/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,6 @@ +0.77122 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.736 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip +0.73303 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.732 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.730 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.595 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-bul/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-bul/tatoeba-test-v2021-03-30/bleu-scores.txt index ee2a20c2..5fde78bf 100644 --- a/scores/ukr-bul/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,5 +1,7 @@ +61.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +56.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opus-2021-02-18.zip 55.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 39.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-bul/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-bul/tatoeba-test-v2021-03-30/chrf-scores.txt index bf569794..85e9ade2 100644 --- a/scores/ukr-bul/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,6 @@ +0.77178 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.736 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip +0.73369 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.732 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.731 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.730 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-bul/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-bul/tatoeba-test-v2021-08-07/bleu-scores.txt index da741410..61174e6e 100644 --- a/scores/ukr-bul/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,5 +1,7 @@ +61.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 56.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 56.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip +56.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opus-2021-02-18.zip 55.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 39.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-bul/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-bul/tatoeba-test-v2021-08-07/chrf-scores.txt index fd1f98b8..9183c488 100644 --- a/scores/ukr-bul/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-bul/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,6 @@ +0.77122 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.736 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip +0.73303 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-bul/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.732 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.730 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.595 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-ces/flores101-dev/bleu-scores.txt b/scores/ukr-ces/flores101-dev/bleu-scores.txt index 49092d3b..d05f7f43 100644 --- a/scores/ukr-ces/flores101-dev/bleu-scores.txt +++ b/scores/ukr-ces/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 23.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-ces/flores101-dev/chrf-scores.txt b/scores/ukr-ces/flores101-dev/chrf-scores.txt index 72c33e60..8f7a1b22 100644 --- a/scores/ukr-ces/flores101-dev/chrf-scores.txt +++ b/scores/ukr-ces/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.51278 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +0.50743 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.50578 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.442 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.439 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-ces/flores101-devtest/bleu-scores.txt b/scores/ukr-ces/flores101-devtest/bleu-scores.txt index 9f298353..b33f4215 100644 --- a/scores/ukr-ces/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-ces/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 24.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +23.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 22.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 17.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip 16.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-ces/flores101-devtest/chrf-scores.txt b/scores/ukr-ces/flores101-devtest/chrf-scores.txt index f81b9cc6..77ac0a90 100644 --- a/scores/ukr-ces/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-ces/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.51969 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +0.51283 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.50715 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.446 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.443 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-ces/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-ces/tatoeba-test-v2020-07-28/bleu-scores.txt index 73a081be..36d61e5c 100644 --- a/scores/ukr-ces/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,4 +1,5 @@ 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 52.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-ces/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-ces/tatoeba-test-v2020-07-28/chrf-scores.txt index 497ac408..cc3975d5 100644 --- a/scores/ukr-ces/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71965 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +0.70661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.69251 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.685 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-ces/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-ces/tatoeba-test-v2021-03-30/bleu-scores.txt index 73a081be..36d61e5c 100644 --- a/scores/ukr-ces/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,4 +1,5 @@ 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 52.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-ces/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-ces/tatoeba-test-v2021-03-30/chrf-scores.txt index 497ac408..cc3975d5 100644 --- a/scores/ukr-ces/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71965 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +0.70661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.69251 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.685 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-ces/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-ces/tatoeba-test-v2021-08-07/bleu-scores.txt index 73a081be..36d61e5c 100644 --- a/scores/ukr-ces/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 56.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +54.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 52.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 52.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-ces/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-ces/tatoeba-test-v2021-08-07/chrf-scores.txt index 1ff9f267..fe9cbdfc 100644 --- a/scores/ukr-ces/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-ces/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,4 +1,5 @@ 0.71965 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zlw/opusTCv20210807+bt_transformer-big_2022-03-07.zip +0.70661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.69251 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.684 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces/opus-2021-02-19.zip diff --git a/scores/ukr-dan/flores101-dev/bleu-scores.txt b/scores/ukr-dan/flores101-dev/bleu-scores.txt index 960cef4c..5a92d432 100644 --- a/scores/ukr-dan/flores101-dev/bleu-scores.txt +++ b/scores/ukr-dan/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +30.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 30.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft_transformer-align_2022-03-07.zip 27.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 14.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-dan/flores101-dev/chrf-scores.txt b/scores/ukr-dan/flores101-dev/chrf-scores.txt index 770c176e..87ddbafc 100644 --- a/scores/ukr-dan/flores101-dev/chrf-scores.txt +++ b/scores/ukr-dan/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57956 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.57344 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.55367 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.414 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-dan/flores101-devtest/bleu-scores.txt b/scores/ukr-dan/flores101-devtest/bleu-scores.txt index 509dee60..1ea406d8 100644 --- a/scores/ukr-dan/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-dan/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +30.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 30.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft_transformer-align_2022-03-07.zip 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 13.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-dan/flores101-devtest/chrf-scores.txt b/scores/ukr-dan/flores101-devtest/chrf-scores.txt index 001954dc..5afd9fc7 100644 --- a/scores/ukr-dan/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-dan/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57829 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.57597 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.55614 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-dan/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.413 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-deu/flores101-dev/bleu-scores.txt b/scores/ukr-deu/flores101-dev/bleu-scores.txt index 870a8239..b6c3d445 100644 --- a/scores/ukr-deu/flores101-dev/bleu-scores.txt +++ b/scores/ukr-deu/flores101-dev/bleu-scores.txt @@ -1,5 +1,6 @@ 27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-deu/opusTCv20210807_transformer-big_2022-03-14.zip 26.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip +25.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 18.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip 18.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 18.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip diff --git a/scores/ukr-deu/flores101-dev/chrf-scores.txt b/scores/ukr-deu/flores101-dev/chrf-scores.txt index b983594f..767eba59 100644 --- a/scores/ukr-deu/flores101-dev/chrf-scores.txt +++ b/scores/ukr-deu/flores101-dev/chrf-scores.txt @@ -1,5 +1,6 @@ 0.56176 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-deu/opusTCv20210807_transformer-big_2022-03-14.zip 0.55424 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip +0.54075 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.482 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 0.478 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip 0.476 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip diff --git a/scores/ukr-deu/flores101-devtest/bleu-scores.txt b/scores/ukr-deu/flores101-devtest/bleu-scores.txt index f7f68695..10ba0b14 100644 --- a/scores/ukr-deu/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-deu/flores101-devtest/bleu-scores.txt @@ -1,5 +1,6 @@ 27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-deu/opusTCv20210807_transformer-big_2022-03-14.zip 26.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip +24.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 17.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 17.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip 17.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip diff --git a/scores/ukr-deu/flores101-devtest/chrf-scores.txt b/scores/ukr-deu/flores101-devtest/chrf-scores.txt index 6b388741..ea121393 100644 --- a/scores/ukr-deu/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-deu/flores101-devtest/chrf-scores.txt @@ -1,5 +1,6 @@ 0.56970 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-deu/opusTCv20210807_transformer-big_2022-03-14.zip 0.56225 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip +0.54601 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.484 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 0.483 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip 0.481 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip diff --git a/scores/ukr-deu/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-deu/tatoeba-test-v2020-07-28/bleu-scores.txt index 1b61f1de..af93f19e 100644 --- a/scores/ukr-deu/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-deu/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -3,6 +3,7 @@ 50.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 50.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip 49.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip +49.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 48.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip 47.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2nld-2021-01-15.zip 44.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4rus2eng-2021-01-17.zip diff --git a/scores/ukr-deu/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-deu/tatoeba-test-v2020-07-28/chrf-scores.txt index 41dfb70b..29366fc5 100644 --- a/scores/ukr-deu/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-deu/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -2,6 +2,7 @@ 0.69159 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip +0.66926 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip 0.661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip 0.649 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2nld-2021-01-15.zip diff --git a/scores/ukr-deu/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-deu/tatoeba-test-v2021-03-30/chrf-scores.txt index d90dbe6b..b91af7d3 100644 --- a/scores/ukr-deu/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-deu/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -2,6 +2,7 @@ 0.69241 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip 0.677 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 0.674 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip +0.67014 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip 0.661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip 0.650 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2nld-2021-01-15.zip diff --git a/scores/ukr-deu/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-deu/tatoeba-test-v2021-08-07/bleu-scores.txt index 4bab241e..fd22e6fa 100644 --- a/scores/ukr-deu/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-deu/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -3,6 +3,7 @@ 50.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 50.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip 49.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip +48.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 48.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip 47.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2nld-2021-01-15.zip 45.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4rus2eng-2021-01-17.zip diff --git a/scores/ukr-deu/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-deu/tatoeba-test-v2021-08-07/chrf-scores.txt index 032ad2b3..250e9c5b 100644 --- a/scores/ukr-deu/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-deu/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -2,6 +2,7 @@ 0.69176 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft_transformer-align_2022-03-06.zip 0.676 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2deu-2021-01-17.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip +0.66949 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2deu-2021-01-15.zip 0.661 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-deu/opus-2021-02-18.zip 0.649 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4bel2nld-2021-01-15.zip diff --git a/scores/ukr-eng/flores101-dev/bleu-scores.txt b/scores/ukr-eng/flores101-dev/bleu-scores.txt index 755a55c5..fe3143e2 100644 --- a/scores/ukr-eng/flores101-dev/bleu-scores.txt +++ b/scores/ukr-eng/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +39.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 39.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 30.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip diff --git a/scores/ukr-eng/flores101-dev/chrf-scores.txt b/scores/ukr-eng/flores101-dev/chrf-scores.txt index e05fd172..c8e833bb 100644 --- a/scores/ukr-eng/flores101-dev/chrf-scores.txt +++ b/scores/ukr-eng/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65088 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.64987 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.587 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.585 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus1m-2021-02-16.zip diff --git a/scores/ukr-eng/flores101-devtest/bleu-scores.txt b/scores/ukr-eng/flores101-devtest/bleu-scores.txt index 9af71f3a..447cc278 100644 --- a/scores/ukr-eng/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-eng/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +39.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 38.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 31.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 30.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/ukr-eng/flores101-devtest/chrf-scores.txt b/scores/ukr-eng/flores101-devtest/chrf-scores.txt index 77ff5eb0..3c1a4b3e 100644 --- a/scores/ukr-eng/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-eng/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.65001 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.64616 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.589 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.587 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-eng/opus+bt-2021-04-30.zip diff --git a/scores/ukr-eng/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-eng/tatoeba-test-v2020-07-28/bleu-scores.txt index ad870c7d..907bb797 100644 --- a/scores/ukr-eng/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +56.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 55.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 53.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 53.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/ukr-eng/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-eng/tatoeba-test-v2020-07-28/chrf-scores.txt index 2a622eef..d86a2739 100644 --- a/scores/ukr-eng/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70935 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.70154 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.684 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/ukr-eng/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-eng/tatoeba-test-v2021-03-30/bleu-scores.txt index 6a8deb75..26567caa 100644 --- a/scores/ukr-eng/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +56.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 55.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 53.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2eng-2021-01-17.zip diff --git a/scores/ukr-eng/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-eng/tatoeba-test-v2021-03-30/chrf-scores.txt index 44a58903..5cb87942 100644 --- a/scores/ukr-eng/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71069 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.70206 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.680 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/ukr-eng/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-eng/tatoeba-test-v2021-08-07/bleu-scores.txt index e189a349..1b0da73c 100644 --- a/scores/ukr-eng/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +56.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 55.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 52.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmw/opus-tuned4ukr2eng-2021-01-17.zip diff --git a/scores/ukr-eng/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-eng/tatoeba-test-v2021-08-07/chrf-scores.txt index 00adc8ce..3bf09d85 100644 --- a/scores/ukr-eng/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-eng/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.71162 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-17.zip 0.70289 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-eng/opusTCv20210807+bt_transformer-big_2022-03-03.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus4m-2020-08-12.zip 0.679 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-eng/opus-2020-07-27.zip diff --git a/scores/ukr-fin/flores101-dev/bleu-scores.txt b/scores/ukr-fin/flores101-dev/bleu-scores.txt index 6fb55149..80977644 100644 --- a/scores/ukr-fin/flores101-dev/bleu-scores.txt +++ b/scores/ukr-fin/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +19.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft+pbt_transformer-align_2022-03-17.zip 18.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft_transformer-align_2022-03-07.zip 18.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-fin/opusTCv20210807+bt_transformer-big_2022-03-07.zip 16.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip diff --git a/scores/ukr-fin/flores101-dev/chrf-scores.txt b/scores/ukr-fin/flores101-dev/chrf-scores.txt index a4d85521..9bca7da1 100644 --- a/scores/ukr-fin/flores101-dev/chrf-scores.txt +++ b/scores/ukr-fin/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54009 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft+pbt_transformer-align_2022-03-17.zip 0.53196 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.53075 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-fin/opusTCv20210807+bt_transformer-big_2022-03-07.zip 0.50965 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip diff --git a/scores/ukr-fin/flores101-devtest/bleu-scores.txt b/scores/ukr-fin/flores101-devtest/bleu-scores.txt index a0111304..fcebfea0 100644 --- a/scores/ukr-fin/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-fin/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +19.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft+pbt_transformer-align_2022-03-17.zip 18.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft_transformer-align_2022-03-07.zip 18.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-fin/opusTCv20210807+bt_transformer-big_2022-03-07.zip 16.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip diff --git a/scores/ukr-fin/flores101-devtest/chrf-scores.txt b/scores/ukr-fin/flores101-devtest/chrf-scores.txt index d7ff0ac8..79e24d9d 100644 --- a/scores/ukr-fin/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-fin/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54827 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft+pbt_transformer-align_2022-03-17.zip 0.54119 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.53440 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-fin/opusTCv20210807+bt_transformer-big_2022-03-07.zip 0.52099 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-fin/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt index 487b9930..b0c6a3d0 100644 --- a/scores/ukr-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +51.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt index 3f018b43..33cbad9c 100644 --- a/scores/ukr-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69950 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.644 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt index 193e2237..45d38fad 100644 --- a/scores/ukr-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +52.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt index d2cb0aed..989c7f4b 100644 --- a/scores/ukr-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69974 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.645 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt index 487b9930..b0c6a3d0 100644 --- a/scores/ukr-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +51.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 44.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt index 3f018b43..e222ad46 100644 --- a/scores/ukr-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-hbs/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69932 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.665 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.644 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hrv/flores101-dev/bleu-scores.txt b/scores/ukr-hrv/flores101-dev/bleu-scores.txt index fea6914f..33a2328c 100644 --- a/scores/ukr-hrv/flores101-dev/bleu-scores.txt +++ b/scores/ukr-hrv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +23.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 16.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2020-06-17.zip diff --git a/scores/ukr-hrv/flores101-dev/chrf-scores.txt b/scores/ukr-hrv/flores101-dev/chrf-scores.txt index ef7b3421..2e7c3c13 100644 --- a/scores/ukr-hrv/flores101-dev/chrf-scores.txt +++ b/scores/ukr-hrv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53522 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.472 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.462 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.460 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2020-06-17.zip diff --git a/scores/ukr-hrv/flores101-devtest/bleu-scores.txt b/scores/ukr-hrv/flores101-devtest/bleu-scores.txt index bd01391a..9f7886c4 100644 --- a/scores/ukr-hrv/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-hrv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +24.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 16.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2020-06-17.zip 16.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-hrv/flores101-devtest/chrf-scores.txt b/scores/ukr-hrv/flores101-devtest/chrf-scores.txt index 959a5f7e..79853b3e 100644 --- a/scores/ukr-hrv/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-hrv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54525 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.475 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.473 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.469 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-hrv/tatoeba-test-v2020-07-28/bleu-scores.txt index 2865bf85..171b8db9 100644 --- a/scores/ukr-hrv/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +50.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 46.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-hrv/tatoeba-test-v2020-07-28/chrf-scores.txt index d8bd203a..d4c3abd6 100644 --- a/scores/ukr-hrv/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68206 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.664 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.661 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.656 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-hrv/tatoeba-test-v2021-03-30/bleu-scores.txt index 35140a17..db9863fc 100644 --- a/scores/ukr-hrv/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +50.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 46.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-hrv/tatoeba-test-v2021-03-30/chrf-scores.txt index 7d44e330..e34b3036 100644 --- a/scores/ukr-hrv/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68139 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.662 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.660 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.659 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-hrv/tatoeba-test-v2021-08-07/bleu-scores.txt index 2865bf85..171b8db9 100644 --- a/scores/ukr-hrv/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +50.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 47.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 46.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 46.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-hrv/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-hrv/tatoeba-test-v2021-08-07/chrf-scores.txt index d8bd203a..d4c3abd6 100644 --- a/scores/ukr-hrv/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-hrv/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.68206 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.664 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.661 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.656 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-isl/flores101-dev/bleu-scores.txt b/scores/ukr-isl/flores101-dev/bleu-scores.txt index 51d7871e..dee353f6 100644 --- a/scores/ukr-isl/flores101-dev/bleu-scores.txt +++ b/scores/ukr-isl/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ 5.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +4.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/ukr-isl/flores101-dev/chrf-scores.txt b/scores/ukr-isl/flores101-dev/chrf-scores.txt index f5d10c77..c25d7792 100644 --- a/scores/ukr-isl/flores101-dev/chrf-scores.txt +++ b/scores/ukr-isl/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ 0.287 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.279 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.27258 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/ukr-isl/flores101-devtest/bleu-scores.txt b/scores/ukr-isl/flores101-devtest/bleu-scores.txt index 6bbe82cc..76efe14a 100644 --- a/scores/ukr-isl/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-isl/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ 5.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 5.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +4.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/ukr-isl/flores101-devtest/chrf-scores.txt b/scores/ukr-isl/flores101-devtest/chrf-scores.txt index 861905fc..f8ad3dc5 100644 --- a/scores/ukr-isl/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-isl/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ 0.284 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.277 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip +0.27243 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip diff --git a/scores/ukr-lav/flores101-dev/bleu-scores.txt b/scores/ukr-lav/flores101-dev/bleu-scores.txt index 7e17a02c..7c8e281f 100644 --- a/scores/ukr-lav/flores101-dev/bleu-scores.txt +++ b/scores/ukr-lav/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ 22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +21.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 9.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lav/flores101-dev/chrf-scores.txt b/scores/ukr-lav/flores101-dev/chrf-scores.txt index c3cc307e..523a5cbe 100644 --- a/scores/ukr-lav/flores101-dev/chrf-scores.txt +++ b/scores/ukr-lav/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ 0.50854 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.50837 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.377 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.365 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lav/flores101-devtest/bleu-scores.txt b/scores/ukr-lav/flores101-devtest/bleu-scores.txt index d2254710..0711e4f1 100644 --- a/scores/ukr-lav/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-lav/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ 21.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +21.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 9.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 8.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lav/flores101-devtest/chrf-scores.txt b/scores/ukr-lav/flores101-devtest/chrf-scores.txt index 0ed05be1..afed356b 100644 --- a/scores/ukr-lav/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-lav/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ 0.51379 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip +0.51139 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.378 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.366 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lit/flores101-dev/bleu-scores.txt b/scores/ukr-lit/flores101-dev/bleu-scores.txt index 458b1720..8475e9be 100644 --- a/scores/ukr-lit/flores101-dev/bleu-scores.txt +++ b/scores/ukr-lit/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 20.4 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 7.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 7.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lit/flores101-dev/chrf-scores.txt b/scores/ukr-lit/flores101-dev/chrf-scores.txt index 9c1d47be..2f154adb 100644 --- a/scores/ukr-lit/flores101-dev/chrf-scores.txt +++ b/scores/ukr-lit/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.53316 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.53197 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.367 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.358 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lit/flores101-devtest/bleu-scores.txt b/scores/ukr-lit/flores101-devtest/bleu-scores.txt index 5a6c191d..3c4f8226 100644 --- a/scores/ukr-lit/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-lit/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +20.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 20.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 8.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 7.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-lit/flores101-devtest/chrf-scores.txt b/scores/ukr-lit/flores101-devtest/chrf-scores.txt index 48e3394b..97bdb70e 100644 --- a/scores/ukr-lit/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-lit/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.54140 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-17.zip 0.54085 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-bat/opusTCv20210807_transformer-align_2022-03-14.zip 0.372 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.362 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-mkd/flores101-dev/bleu-scores.txt b/scores/ukr-mkd/flores101-dev/bleu-scores.txt index 437bf365..066a04d4 100644 --- a/scores/ukr-mkd/flores101-dev/bleu-scores.txt +++ b/scores/ukr-mkd/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 18.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 18.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 17.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-mkd/flores101-dev/chrf-scores.txt b/scores/ukr-mkd/flores101-dev/chrf-scores.txt index 8c36a016..40559abe 100644 --- a/scores/ukr-mkd/flores101-dev/chrf-scores.txt +++ b/scores/ukr-mkd/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.55300 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.502 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.497 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.496 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-mkd/flores101-devtest/bleu-scores.txt b/scores/ukr-mkd/flores101-devtest/bleu-scores.txt index 101cbd15..ccd13064 100644 --- a/scores/ukr-mkd/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-mkd/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +26.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 19.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 19.6 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 19.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-mkd/flores101-devtest/chrf-scores.txt b/scores/ukr-mkd/flores101-devtest/chrf-scores.txt index 2225213b..4c28bd56 100644 --- a/scores/ukr-mkd/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-mkd/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.56952 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.509 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.507 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.505 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-nob/flores101-dev/bleu-scores.txt b/scores/ukr-nob/flores101-dev/bleu-scores.txt index 650b9f1d..9dcd0773 100644 --- a/scores/ukr-nob/flores101-dev/bleu-scores.txt +++ b/scores/ukr-nob/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 20.5 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nob/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 14.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nor/opus-2021-02-24.zip 10.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-nob/flores101-dev/chrf-scores.txt b/scores/ukr-nob/flores101-dev/chrf-scores.txt index e6a569be..24ed7c1e 100644 --- a/scores/ukr-nob/flores101-dev/chrf-scores.txt +++ b/scores/ukr-nob/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52248 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.50299 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nob/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.428 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nor/opus-2021-02-24.zip 0.391 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-nob/flores101-devtest/bleu-scores.txt b/scores/ukr-nob/flores101-devtest/bleu-scores.txt index 31dbdf76..1f209321 100644 --- a/scores/ukr-nob/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-nob/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +21.1 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 20.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nob/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 14.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nor/opus-2021-02-24.zip 10.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-nob/flores101-devtest/chrf-scores.txt b/scores/ukr-nob/flores101-devtest/chrf-scores.txt index 1c9fc293..62a8a275 100644 --- a/scores/ukr-nob/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-nob/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52271 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.50711 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nob/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.436 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-nor/opus-2021-02-24.zip 0.394 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-ron/flores101-dev/bleu-scores.txt b/scores/ukr-ron/flores101-dev/bleu-scores.txt index b8a1b3a7..8259ade5 100644 --- a/scores/ukr-ron/flores101-dev/bleu-scores.txt +++ b/scores/ukr-ron/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 27.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft_transformer-align_2022-03-08.zip +27.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 15.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-roa/opus1m-2021-02-18.zip 9.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-ron/flores101-dev/chrf-scores.txt b/scores/ukr-ron/flores101-dev/chrf-scores.txt index 19989f05..b774f030 100644 --- a/scores/ukr-ron/flores101-dev/chrf-scores.txt +++ b/scores/ukr-ron/flores101-dev/chrf-scores.txt @@ -1,4 +1,5 @@ 0.55091 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft_transformer-align_2022-03-08.zip +0.54684 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.448 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-roa/opus1m-2021-02-18.zip 0.380 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.371 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-ron/flores101-devtest/bleu-scores.txt b/scores/ukr-ron/flores101-devtest/bleu-scores.txt index 46bfba42..58b7f2d4 100644 --- a/scores/ukr-ron/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-ron/flores101-devtest/bleu-scores.txt @@ -1,4 +1,5 @@ 27.7 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft_transformer-align_2022-03-08.zip +26.8 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 15.3 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-roa/opus1m-2021-02-18.zip 9.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 9.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-ron/flores101-devtest/chrf-scores.txt b/scores/ukr-ron/flores101-devtest/chrf-scores.txt index 5ca0e7bc..529bd2c4 100644 --- a/scores/ukr-ron/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-ron/flores101-devtest/chrf-scores.txt @@ -1,4 +1,5 @@ 0.55343 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft_transformer-align_2022-03-08.zip +0.54722 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ron/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-16.zip 0.449 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-roa/opus1m-2021-02-18.zip 0.379 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 0.369 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-slk/flores101-dev/bleu-scores.txt b/scores/ukr-slk/flores101-dev/bleu-scores.txt index 85d809fe..29c52e66 100644 --- a/scores/ukr-slk/flores101-dev/bleu-scores.txt +++ b/scores/ukr-slk/flores101-dev/bleu-scores.txt @@ -1,2 +1,3 @@ +22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 21.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 1.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ukr-slk/flores101-dev/chrf-scores.txt b/scores/ukr-slk/flores101-dev/chrf-scores.txt index e3341af5..363159eb 100644 --- a/scores/ukr-slk/flores101-dev/chrf-scores.txt +++ b/scores/ukr-slk/flores101-dev/chrf-scores.txt @@ -1,2 +1,3 @@ +0.50624 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.50343 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.220 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ukr-slk/flores101-devtest/bleu-scores.txt b/scores/ukr-slk/flores101-devtest/bleu-scores.txt index 7427051f..bea0cc8d 100644 --- a/scores/ukr-slk/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-slk/flores101-devtest/bleu-scores.txt @@ -1,2 +1,3 @@ +22.1 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 22.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 1.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ukr-slk/flores101-devtest/chrf-scores.txt b/scores/ukr-slk/flores101-devtest/chrf-scores.txt index ab555cc6..58db6a73 100644 --- a/scores/ukr-slk/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-slk/flores101-devtest/chrf-scores.txt @@ -1,2 +1,3 @@ +0.51043 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-17.zip 0.50815 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-ces+slk/opusTCv20210807+pft_transformer-align_2022-03-08.zip 0.219 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2021-02-16.zip diff --git a/scores/ukr-slv/flores101-dev/bleu-scores.txt b/scores/ukr-slv/flores101-dev/bleu-scores.txt index 5b2e42c1..30017cbb 100644 --- a/scores/ukr-slv/flores101-dev/bleu-scores.txt +++ b/scores/ukr-slv/flores101-dev/bleu-scores.txt @@ -1,3 +1,4 @@ +24.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 16.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 15.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/flores101-dev/chrf-scores.txt b/scores/ukr-slv/flores101-dev/chrf-scores.txt index 664bb7cb..d3a026e7 100644 --- a/scores/ukr-slv/flores101-dev/chrf-scores.txt +++ b/scores/ukr-slv/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52782 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.453 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.447 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/flores101-devtest/bleu-scores.txt b/scores/ukr-slv/flores101-devtest/bleu-scores.txt index 5830781e..92d42ffe 100644 --- a/scores/ukr-slv/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-slv/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +23.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 16.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-slv/opus-2021-02-19.zip 16.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 15.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/flores101-devtest/chrf-scores.txt b/scores/ukr-slv/flores101-devtest/chrf-scores.txt index baefd2e7..7dc02c14 100644 --- a/scores/ukr-slv/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-slv/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.52887 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.454 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.452 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.450 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-slv/tatoeba-test-v2020-07-28/bleu-scores.txt index 1dfa79cb..6c4b08ca 100644 --- a/scores/ukr-slv/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +15.2 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 14.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 14.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 13.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-slv/tatoeba-test-v2020-07-28/chrf-scores.txt index 1f43555d..90fd8d10 100644 --- a/scores/ukr-slv/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.29718 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.293 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.290 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.289 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-slv/tatoeba-test-v2021-03-30/bleu-scores.txt index 130b2045..2173a7eb 100644 --- a/scores/ukr-slv/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +14.6 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 14.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 13.8 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-slv/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-slv/tatoeba-test-v2021-03-30/chrf-scores.txt index 5da4bc87..22cf81e2 100644 --- a/scores/ukr-slv/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.29286 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.290 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.287 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.286 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-slv/tatoeba-test-v2021-08-07/bleu-scores.txt index c7d20cf8..d0a570dd 100644 --- a/scores/ukr-slv/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,4 +1,5 @@ 15.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip +15.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 14.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 14.1 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 13.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-slv/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-slv/tatoeba-test-v2021-08-07/chrf-scores.txt index fd0734d7..16475f82 100644 --- a/scores/ukr-slv/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-slv/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.29167 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.287 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip 0.285 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.284 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt index efb082db..b771f541 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +53.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 52.4 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt index 9582a332..11853380 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70008 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.690 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.683 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.681 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt index 753762fd..43ade111 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +53.9 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 52.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.7 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt index 0ac62962..d9692274 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.70231 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.692 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.688 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.686 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt index c36b8a7f..8696c29d 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +53.7 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 52.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 52.0 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 51.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip diff --git a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt index 660f6edb..646dee44 100644 --- a/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-srp_Cyrl/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.69920 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.687 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.684 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.682 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt index 65c4f20d..24e4b08d 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/bleu-scores.txt @@ -1,3 +1,4 @@ +52.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 43.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 42.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt index 731d3f22..e7653f23 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2020-07-28/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72559 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.667 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt index 38c50cda..ba26329c 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/bleu-scores.txt @@ -1,3 +1,4 @@ +53.0 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.5 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 43.0 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-hbs/opus-2021-02-23.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt index bfd16480..69164858 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2021-03-30/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72599 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.673 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.667 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 0.663 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt index 65c4f20d..24e4b08d 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/bleu-scores.txt @@ -1,3 +1,4 @@ +52.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 43.3 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip 43.2 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 42.9 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-09-26.zip diff --git a/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt b/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt index 731d3f22..e7653f23 100644 --- a/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt +++ b/scores/ukr-srp_Latn/tatoeba-test-v2021-08-07/chrf-scores.txt @@ -1,3 +1,4 @@ +0.72559 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-zls/opusTCv20210807+bt_transformer-big_2022-03-16.zip 0.672 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-10-04.zip 0.667 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-27.zip 0.666 https://object.pouta.csc.fi/Tatoeba-MT-models/sla-sla/opus-2020-07-21.zip diff --git a/scores/ukr-swe/flores101-dev/bleu-scores.txt b/scores/ukr-swe/flores101-dev/bleu-scores.txt index fc4f2fac..b952266c 100644 --- a/scores/ukr-swe/flores101-dev/bleu-scores.txt +++ b/scores/ukr-swe/flores101-dev/bleu-scores.txt @@ -1,4 +1,5 @@ 28.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft_transformer-align_2022-03-07.zip +28.5 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 25.9 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 13.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip 12.4 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-21.zip diff --git a/scores/ukr-swe/flores101-dev/chrf-scores.txt b/scores/ukr-swe/flores101-dev/chrf-scores.txt index 7f72980b..c99145c6 100644 --- a/scores/ukr-swe/flores101-dev/chrf-scores.txt +++ b/scores/ukr-swe/flores101-dev/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57381 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.57272 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.55120 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.411 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-swe/flores101-devtest/bleu-scores.txt b/scores/ukr-swe/flores101-devtest/bleu-scores.txt index 8801b8b4..5fea241f 100644 --- a/scores/ukr-swe/flores101-devtest/bleu-scores.txt +++ b/scores/ukr-swe/flores101-devtest/bleu-scores.txt @@ -1,3 +1,4 @@ +28.8 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 28.2 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft_transformer-align_2022-03-07.zip 25.6 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 12.3 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/scores/ukr-swe/flores101-devtest/chrf-scores.txt b/scores/ukr-swe/flores101-devtest/chrf-scores.txt index 6e73fcee..15384666 100644 --- a/scores/ukr-swe/flores101-devtest/chrf-scores.txt +++ b/scores/ukr-swe/flores101-devtest/chrf-scores.txt @@ -1,3 +1,4 @@ +0.57499 https://object.pouta.csc.fi/Tatoeba-MT-models/zle-gmq/opusTCv20210807+pft_transformer-big_2022-03-14.zip 0.57231 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft_transformer-align_2022-03-07.zip 0.55099 https://object.pouta.csc.fi/Tatoeba-MT-models/ukr-swe/opusTCv20210807+pft-sepvoc_transformer-tiny11-align_2022-03-13.zip 0.406 https://object.pouta.csc.fi/Tatoeba-MT-models/ine-ine/opus-2020-07-27.zip diff --git a/tatoeba/Makefile b/tatoeba/Makefile index 1a82b488..655ca7cd 100644 --- a/tatoeba/Makefile +++ b/tatoeba/Makefile @@ -224,7 +224,7 @@ release-improved-models: s=`echo "$$l" | cut -f1 -d-`; \ t=`echo "$$l" | cut -f2 -d-`; \ make SRCLANGS="$$s" TRGLANGS="$$t" release-if-done-tatoeba; \ - done ) + done ## release all models with improved scores even if they are not yet done release-all-improved-models: