Is there any NMT tutorial for dummies?
I would like to know if there is a step-by-step tutorial on how an NMT engine is trained and what each parameter means.
Thank you for your help!
A step-by-step guide is the "Walkthrough".
Tensor2tensor is a research project with SotA results and frequent changes in the source code, not a tutorial framework for dummies. Thus the best explanation of most parameters is in the source code (the documentation may be outdated and incomplete).
There are many other NMT frameworks which are more suitable (I think) for tutorials, e.g. OpenNMT and Neural Monkey (see its NMT tutorial) - but these don't achieve the SotA results (yet).
Thank you for your reply. I can understand that it's difficult to maintain a tutorial, but I was wondering if any users created something from their experience so far.
Oh yes, my experience is summarized in this paper.
That's great! This is what I was looking for.
@martinpopel FYI I replicated T2T EN-DE with both OpentNMT-TF AND OpenNMT-py
the TF one is already there for download.
the Pytorch one will be shortly.
@dinosaxon Another great nmt tutorial is the TensorFlow nmt project :) There are many useful explanations which really helps to understand sequence-to-sequence models.
@stefan-it Thank you, Stefan! This is also great :)
Most helpful comment
Oh yes, my experience is summarized in this paper.