-
Notifications
You must be signed in to change notification settings - Fork 9
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
multiple language support (currently only english) #6
Comments
Hello xTerradon, for this post, I have seen that the translation of any language is direct translation from english |
Hey, thank you for your comment! So while a translation library might do the trick in many cases, there will always be mistakes in the matching. The only alternative I see is hardcoding the matches, but that would require tedious effort and continuous maintaining for future model improvements. I really appreciate your offer to help! Feel free to fork the project and open a pull request if you come up with a clever way of matching task and model. Otherwise this will be a feature added later in the development process. |
You are right, I didn't thought of that. Yea I will think of a better way again thanks for this amazing repo |
The
hcaptcha_solver
only works on captchas in english, as the models are matched through the text of the captcha header. If you open the captcha in another language, themodel_handler
will not be able to find a CNN model accordingly, even if the task could be solved.The strings should be translated before checking for matches in the available models. This can be done by hardcoding (100% safe but not dynamic) or by using dynamic translation libraries (prone to errors, but dynamic) or a combination of both.
The text was updated successfully, but these errors were encountered: