识别 javascript 中的(口语)语言
有谁知道是否有任何可用于 javascript 的语言检测脚本/库?我想将它合并到nodejs中,但没有找到。
我不需要浏览器语言检测,而是字符串语言检测。 “Hello World”将被检测为英语,“Hallo Wereld”将被检测为荷兰语。
提前致谢。
Does anyone know if there is any language detection script/library available for javascript? I like to incorporate it into nodejs but didn't found any.
I don't want a browser language detection but a string language detection.
'Hello World' would be detected english and 'Hallo Wereld' would be detected as dutch.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我对自然语言处理不太感兴趣,但我想你可以使用 Trigrams。
ActiveState 有一个简单 Python 版本的配方。
当然,您始终可以使用 C++ 库并为 Node.js 编写包装器并对其进行编译。
I'm not that big into natural language processing but I suppose you could use Trigrams.
ActiveState has a Recipe of a simple Python version.
Of course you can always use a C++ library and write a wrapper for Node.js and compile that.
Google Translate API 允许语言检测并与 JavaScript 配合使用。您应该查看以下参考:
http://code.google.com /apis/language/translate/v1/reference.html
The Google Translate API allows language detection and works with JavaScript. You should check out the reference below:
http://code.google.com/apis/language/translate/v1/reference.html