All Projects → abiko-search → tongue

abiko-search / tongue

Licence: other
Elixir port of Nakatani Shuyo's natural language detector

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to tongue

React Native Localize
🌍 A toolbox for your React Native app localization
Stars: ✭ 1,682 (+9794.12%)
Mutual labels:  language-detection
Hms Ml Demo
HMS ML Demo provides an example of integrating Huawei ML Kit service into applications. This example demonstrates how to integrate services provided by ML Kit, such as face detection, text recognition, image segmentation, asr, and tts.
Stars: ✭ 187 (+1000%)
Mutual labels:  language-detection
detectlanguage-python
Detect Language API Python Client
Stars: ✭ 49 (+188.24%)
Mutual labels:  language-detection
Padatious
A neural network intent parser
Stars: ✭ 124 (+629.41%)
Mutual labels:  language-detection
Spark Nlp
State of the Art Natural Language Processing
Stars: ✭ 2,518 (+14711.76%)
Mutual labels:  language-detection
cnn-ld-tf
Convolutional Neural Network for Language Detection in Tensorflow
Stars: ✭ 12 (-29.41%)
Mutual labels:  language-detection
Paasaa
Natural language detection for Elixir
Stars: ✭ 86 (+405.88%)
Mutual labels:  language-detection
jstarcraft-nlp
专注于解决自然语言处理领域的几个核心问题:词法分析,句法分析,语义分析,语种检测,信息抽取,文本聚类和文本分类. 为相关领域的研发人员提供完整的通用设计与参考实现. 涵盖了多种自然语言处理算法,适配了多个自然语言处理框架. 兼容Lucene/Solr/ElasticSearch插件.
Stars: ✭ 92 (+441.18%)
Mutual labels:  language-detection
L10n Swift
Localization of the application with ability to change language "on the fly" and support for plural form in any language.
Stars: ✭ 177 (+941.18%)
Mutual labels:  language-detection
php-google-translate-for-free
Library for free use Google Translator. With attempts connecting on failure and array support.
Stars: ✭ 124 (+629.41%)
Mutual labels:  language-detection
Fasttext.js
FastText for Node.js
Stars: ✭ 127 (+647.06%)
Mutual labels:  language-detection
Go Lang Detector
A small library in golang, that detects the language of a text. (text categorization)
Stars: ✭ 134 (+688.24%)
Mutual labels:  language-detection
pycld3
Python3 bindings for the Compact Language Detector v3 (CLD3)
Stars: ✭ 122 (+617.65%)
Mutual labels:  language-detection
Nlp Models Tensorflow
Gathers machine learning and Tensorflow deep learning models for NLP problems, 1.13 < Tensorflow < 2.0
Stars: ✭ 1,603 (+9329.41%)
Mutual labels:  language-detection
detectlanguage-java
Detect Language API Java Client
Stars: ✭ 23 (+35.29%)
Mutual labels:  language-detection
Spacy Cld
Language detection extension for spaCy 2.0+
Stars: ✭ 103 (+505.88%)
Mutual labels:  language-detection
Malaya
Natural Language Toolkit for bahasa Malaysia, https://malaya.readthedocs.io/
Stars: ✭ 239 (+1305.88%)
Mutual labels:  language-detection
lingua-go
👄 The most accurate natural language detection library for Go, suitable for long and short text alike
Stars: ✭ 684 (+3923.53%)
Mutual labels:  language-detection
SwiftUIMLKitTranslator
SwiftUI MLKit Language Identification & Translator
Stars: ✭ 23 (+35.29%)
Mutual labels:  language-detection
spacy-langdetect
A fully customisable language detection pipeline for spaCy
Stars: ✭ 86 (+405.88%)
Mutual labels:  language-detection

Tongue

Hex.pm Hex.pm

Elixir port of Nakatani Shuyo's natural language detector

Installation

Add tongue to your list of dependencies in mix.exs:

def deps do
  [{:tongue, "~> 2.2"}]
end

Usage

Detect language and return a scored list of languages:

iex> Tongue.detect("The octopus is a soft-bodied, eight-armed mollusc of the order Octopoda, with around 300 known species. Along with squids, cuttlefish and nautiloids, they are classed as cephalopods.")
[en: 0.9999986358008764]

Detect language within subset of supported languages:

use Mix.Config

config :tongue,
  languages: ~w(en ru fr de)a

Languages

Tongue supports 55 languages out of the box (ISO 639-1 codes):

af, ar, bg, bn, ca, cs, cy, da, de, el, en, es, et, fa, fi, fr, gu, he,
hi, hr, hu, id, it, ja, kn, ko, lt, lv, mk, ml, mr, ne, nl, no, pa, pl,
pt, ro, ru, sk, sl, so, sq, sv, sw, ta, te, th, tl, tr, uk, ur, vi, zh-cn, zh-tw

Derivation

Tongue is a derivative work from Nakatani Shuyo's language-detection library

License

Apache 2.0 © Danila Poyarkov

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].