Closed warvyvr closed 1 month ago
Hi, what you want is not yet possible with my library. As of now, it only provides a relative confidence metric that tells you how likely a language is in comparison to another language. What you want is an absolute confidence metric that works independently from any other language. I plan to implement something like that but it's not easy. I can't tell you when this will be done.
Hi, what you want is not yet possible with my library. As of now, it only provides a relative confidence metric that tells you how likely a language is in comparison to another language. What you want is an absolute confidence metric that works independently from any other language. I plan to implement something like that but it's not easy. I can't tell you when this will be done.
Thanks, it is a good news, look forward to it.
Looking forward to this feature! We are looking for something similar. Any update on when this may be available?
Closed in favor of #68. The Rust implementation will contain this feature in version 1.7.0 to be released still in this year.
Hi, In my scenario, the goal is to detect whether the input text is in English or another language. I'm not sure how to utilize the library to accomplish this task. For instance, if the input text is in a specified language, such as Vietnamese, I expect the detection as
non english
output:
when remove
lingua.Vietnamese
from expected language list, the program outputsEnglish: 1.00
, I would like the result isother language
type rather than engilsh. please help me on how to do this. Thanks in advance.