-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
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
Markovify always outputs "None" with russian corpus #149
Comments
Thanks for your interest in this library, @wooferclaw. I'm not familiar enough with Russian to be able to diagnose the issue. One step, however, that would help help me and/or a more Russian-familiar community member resolve this: Could you attach a minimal Python script that demonstrates the problem? |
I would check your text/char encoding first...then I would try well_formed = True and reject_reg = ' '(space for example) to disable rejection of non-standard chars. @jsvine If you want/interested, I can assist with the Russian and Hebrew languages. Also, wanted to thank you for markovify! Great job. I love it. |
Hi @asigalov61, and thank you for the offer and kind words. If you would like to provide examples of, and improvements to, using Markovify in those languages, that'd be great. Feel free to open an issue or PR, or to email me directly (jsvine@gmail.com). |
Hello, how are things going with the Russian-language integration? I really need Markovify in my project, but unfortunately I work with russian corpus |
@markelovstyle Hey, I can help with Russian stuff. Have you tried this? f.write(TXT_String.encode('utf-8', 'replace')) markov_text_model = markovify.NewlineText(text, well_formed=False, state_size=markov_chain_state_size) And then try to use smaller state sizes (i.e 2) and also higher overlaps. Other settings are important too. Let me know. |
@markelovstyle Take a look at my implementation of markovify: You are welcome to use the code as it supports a full range of uni-8 chars, which should work fine for Russian as well. |
Thanks, it works, but not as well as English. In most cases I get None. |
@markelovstyle If it works sometimes it means that you need to adjust the settings of the generator. Also, the corpus must be properly formatted. This implementation requires sufficiently long sentences and a sufficiently long corpus. |
@markelovstyle I was gonna make a small implementation Colab based on markovify for the Russian corpus so gimme a week or so and I will post a working example. |
Guys, i appreciate your help very much. @asigalov61 i have tried may encoding variations, none of them worked. |
Here, guys. I made a draft version. Works great on my end. Try it out and let me know. |
Hey, the collab link is unavailable, could you fix it? I really want to fix the problem for me and your draft might help me. |
With any number of tries or any sentecnce length Markovify always outputs "None" when I use text file in russian as corpus.
Even with a basic example from readme.
for example - this one https://raw.githubusercontent.com/AlexWortega/botfortest/master/kiskis.txt
The text was updated successfully, but these errors were encountered: