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
hey folks -
testing out this library with some sample posts from our application, and I'm getting some strange results:
console.log post text: take me back home console.log language detection results: [ [ 'pidgin', 0.3275 ], [ 'hawaiian', 0.2816666666666666 ] ]
console.log post text: i like your hair console.log language detection results: [ [ 'hawaiian', 0.26625 ], [ 'norwegian', 0.25145833333333334 ] ]
I installed via npm install languagedetect --save
npm install languagedetect --save
The text was updated successfully, but these errors were encountered:
english is not in the top 5 results
console.log post text: take me back home console.log language detection results: [ [ 'pidgin', 0.3275 ], [ 'hawaiian', 0.2816666666666666 ], [ 'hausa', 0.265625 ], [ 'dutch', 0.20395833333333335 ], [ 'slovene', 0.19854166666666662 ] ] console.log post text: i like your hair console.log language detection results: [ [ 'hawaiian', 0.26625 ], [ 'norwegian', 0.25145833333333334 ], [ 'icelandic', 0.23479166666666662 ], [ 'turkish', 0.22270833333333329 ], [ 'welsh', 0.21479166666666671 ] ]
Sorry, something went wrong.
Yes, since language-detect is trigram based which is statistically based, sometimes it needs more input data to bring the right result :)
No branches or pull requests
hey folks -
testing out this library with some sample posts from our application, and I'm getting some strange results:
I installed via
npm install languagedetect --save
The text was updated successfully, but these errors were encountered: