What is the correct answer for detect()
on a multilingual string?
#13
Labels
i18n-tracker
Group bringing to attention of Internationalization, or tracked by i18n but not needing response.
If a string is 100 chars of English followed by 900 characters of French, what is the ideal result? Is it the following?
I haven't been able to come up with a better idea than that each language in the result should tell you what fraction of the string is in that language.
This gets more complicated when the language of segments of the string are themselves ambiguous. E.g. for an English article talking about words that are shared between Chinese and Japanese, what is the correct answer? Assuming the text is 80% English with 10% of it being Chinese/Japanese. What is the ideal result? Is it
even though 20% of the text is Japanese and 20% is Chinese? I can't think of a better "correct" answer but maybe there is one.
Also from an implementation perspective, the above "correct" answer is relatively easy. Models may have a fixed maximum input size and the above can be calculated by breaking the string into chunks and averaging over the results for each chunk.
Questions
The text was updated successfully, but these errors were encountered: