I'm building a new dictionary for a Ghanaian language and trying to follow the tutorial.
In the tutorial, this is the command given to train a dictionary:
g2p-seq2seq --train train_dictionary.dic --model model_folder_path
What model is referred to over here? Is it a language model?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm building a new dictionary for a Ghanaian language and trying to follow the tutorial.
In the tutorial, this is the command given to train a dictionary:
g2p-seq2seq --train train_dictionary.dic --model model_folder_path
What model is referred to over here? Is it a language model?
g2p model that you are going to train. Model files will be created in the folder you specified.
Oh ok. Thanks!