The notebooks of this OpenNMT-py tutorial are now updated for v. 3. They mainly cover: data processing, training an NMT model with OpenNMT-py, translation, and evaluation. There are also references to some advanced topics.
Hi Yasmin,
Another great tutorial that you’ve prepared. Thank you for that – I will surely use it in my classes.
I am trying it out on Kaggle and on our own multi-GPU machine. The MT-Preparation works perfect in Kaggle, but on my own machine I get an error with the filter.py script: ValueError: Specified \n as separator or delimiter. This forces the python engine which does not accept a line terminator. Hence it is not allowed to use the line terminator as separator. Any idea what could cause this?
I am aware of this issue, but I could not replicate it either on my Mac or Google Colab. One solution is to replace sep="\n" with sep="\0" as suggested here.