yanmtt
yanmtt copied to clipboard
Yet Another Neural Machine Translation Toolkit
Hello, I am trying to further-pretrain the official BARThez model (French BART) checkpoint available at moussaKam/barthez with the denoising task. The command used was the following : ``` export CUDA_VISIBLE_DEVICES=0...
Hi, very helpful toolkit, I have learned a lot from it. Recently, I have been focused on the multi-lingual title generation related tasks, and found that xProphetNet model has good...
While-loop here stop when there is no more elements from the generator. next(monolingual_generator) will raise StopIteration when there is no more element to return. Using for-loop to avoid StopIteration.