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
seeing conflict when trying to load mlphon and mlmorph together
the code snippet
from mlmorph import Generator from mlphon import PhoneticAnalyser generator = Generator() print('try1') print(generator.generate("കേരളം<np><genitive>")) mlphon = PhoneticAnalyser() print('try2 - after init of mlphon') print(generator.generate("കേരളം<np><genitive>"))
returns
try1 [('കേരളത്തിന്റെ', 181), ('കേരളത്തിൻ', 188)] try2 - after init of mlphon []
the second try of generate after mlphon is initialised, returns empty
The text was updated successfully, but these errors were encountered:
No branches or pull requests
seeing conflict when trying to load mlphon and mlmorph together
the code snippet
returns
the second try of generate after mlphon is initialised, returns empty
The text was updated successfully, but these errors were encountered: