You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support conversion of Transformer models trained with Fairseq (see script ct2-fairseq-converter)
Support conversion of models using GELU activations
Add translation option normalize_scores to return scores normalized by the hypotheses length: enabling this option can improve the beam search output for some models
Add translation option allow_early_exit to toggle the beam search early exit optimization: disabling this option has a small negative impact on performance, but it can improve the beam search output when using penalties or normalized scores
[C++] Add class BufferedTranslationWrapper to buffer and batch independent inputs to the same model
Fixes and improvements
Read value of environment variable OMP_NUM_THREADS when intra_threads is not set
Improve file translation performance by enabling local sorting by default
[Python] Improve error message when converting unsupported models and list all options that are unsupported
[Python] Return statistics of Translator.translate_file as an object with named properties
[C++] Fix compilation of method TranslatorPool::consume_raw_text_file that takes streams as inputs