We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The README file states that, if you want to train a g2p model, you should run g2p-seq2seq with this syntax:
g2p-seq2seq --train train_dictionary.dic --model_dir model_folder_path
Unfortunately this syntax yields the following error:
File "[...]l/g2p_seq2seq/g2p_problem.py", line 238, in dataset assert data_dir AssertionError
Looking closely at https://github.com/cmusphinx/g2p-seq2seq/blob/master/g2p_seq2seq/g2p_problem.py#L238 it's just a matter of adding the folder, apparently.
In fact, this works: g2p-seq2seq --train ./train_dictionary.dic --model_dir model_folder_path
g2p-seq2seq --train ./train_dictionary.dic --model_dir model_folder_path
My suggestion is to highlight the need of the directory in the README too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The README file states that, if you want to train a g2p model, you should run g2p-seq2seq with this syntax:
g2p-seq2seq --train train_dictionary.dic --model_dir model_folder_path
Unfortunately this syntax yields the following error:
Fix
Looking closely at https://github.com/cmusphinx/g2p-seq2seq/blob/master/g2p_seq2seq/g2p_problem.py#L238 it's just a matter of adding the folder, apparently.
In fact, this works:
g2p-seq2seq --train ./train_dictionary.dic --model_dir model_folder_path
My suggestion is to highlight the need of the directory in the README too.
The text was updated successfully, but these errors were encountered: