All Projects → adrenak → UniLang

adrenak / UniLang

Licence: MIT license
Translate text from one language to another using Google Translate

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to UniLang

Fasttext.js
FastText for Node.js
Stars: ✭ 127 (+284.85%)
Mutual labels:  language-detection
pycld3
Python3 bindings for the Compact Language Detector v3 (CLD3)
Stars: ✭ 122 (+269.7%)
Mutual labels:  language-detection
jstarcraft-nlp
专注于解决自然语言处理领域的几个核心问题:词法分析,句法分析,语义分析,语种检测,信息抽取,文本聚类和文本分类. 为相关领域的研发人员提供完整的通用设计与参考实现. 涵盖了多种自然语言处理算法,适配了多个自然语言处理框架. 兼容Lucene/Solr/ElasticSearch插件.
Stars: ✭ 92 (+178.79%)
Mutual labels:  language-detection
Go Lang Detector
A small library in golang, that detects the language of a text. (text categorization)
Stars: ✭ 134 (+306.06%)
Mutual labels:  language-detection
Malaya
Natural Language Toolkit for bahasa Malaysia, https://malaya.readthedocs.io/
Stars: ✭ 239 (+624.24%)
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 (+275.76%)
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 (+4757.58%)
Mutual labels:  language-detection
spacy-fastlang
Language detection using Spacy and Fasttext
Stars: ✭ 34 (+3.03%)
Mutual labels:  language-detection
cnn-ld-tf
Convolutional Neural Network for Language Detection in Tensorflow
Stars: ✭ 12 (-63.64%)
Mutual labels:  language-detection
SwiftUIMLKitTranslator
SwiftUI MLKit Language Identification & Translator
Stars: ✭ 23 (-30.3%)
Mutual labels:  language-detection
Spark Nlp
State of the Art Natural Language Processing
Stars: ✭ 2,518 (+7530.3%)
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 (+466.67%)
Mutual labels:  language-detection
detectlanguage-python
Detect Language API Python Client
Stars: ✭ 49 (+48.48%)
Mutual labels:  language-detection
Whatthelang
Lightning Fast Language Prediction 🚀
Stars: ✭ 130 (+293.94%)
Mutual labels:  language-detection
lingua-go
👄 The most accurate natural language detection library for Go, suitable for long and short text alike
Stars: ✭ 684 (+1972.73%)
Mutual labels:  language-detection
Padatious
A neural network intent parser
Stars: ✭ 124 (+275.76%)
Mutual labels:  language-detection
spacy-langdetect
A fully customisable language detection pipeline for spaCy
Stars: ✭ 86 (+160.61%)
Mutual labels:  language-detection
nlpserver
NLP Web Service
Stars: ✭ 76 (+130.3%)
Mutual labels:  language-detection
tongue
Elixir port of Nakatani Shuyo's natural language detector
Stars: ✭ 17 (-48.48%)
Mutual labels:  language-detection
detectlanguage-java
Detect Language API Java Client
Stars: ✭ 23 (-30.3%)
Mutual labels:  language-detection

UniLang

Translate text from one language to another using Google Translate

About

UniLang uses the Google Translation API to translate between languages. All languages supported by the Google service are supported in UniLang as well

Classes

  • Translator : A class that takes a source and target language. Exposes the translation feature using Translator.Run method, which accepts the text to be translated and returns result as a List of TranslatedTextPair objects.
  • TranslatedTextPair : Pretty much a Pair<string, string> that holds the original and translated texts to report back the translation results.
  • Language : Holds the ISO standard codes of the languages for typesafety

Usage

Translator translator = Translator.Create(Language.Auto, Language.French);
translator.Run("Text to translate. Can have multiple sentences.", results => {
    foreach (var result in results)
        Debug.Log(result.original + " => " + result.translated);
});

Soon

  • Recognizer : A class that recognizes the language given to it.
  • Ability to translate several passages of text at once

Contact

@www
@github
@twitter

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].