All Projects → floydhub → language-identification-template

floydhub / language-identification-template

Licence: other
Detect the languages from short pieces of text

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to language-identification-template

lingua-go
👄 The most accurate natural language detection library for Go, suitable for long and short text alike
Stars: ✭ 684 (+3320%)
Mutual labels:  language-detection, language-identification
colornet-template
Colorizing B&W Photos with Neural Networks
Stars: ✭ 31 (+55%)
Mutual labels:  floydhub
php-google-translate-for-free
Library for free use Google Translator. With attempts connecting on failure and array support.
Stars: ✭ 124 (+520%)
Mutual labels:  language-detection
SwiftUIMLKitTranslator
SwiftUI MLKit Language Identification & Translator
Stars: ✭ 23 (+15%)
Mutual labels:  language-detection
detectlanguage-python
Detect Language API Python Client
Stars: ✭ 49 (+145%)
Mutual labels:  language-detection
save-and-resume
Checkpoint tutorial on FloydHub for Pytorch, Keras and Tensorflow.
Stars: ✭ 36 (+80%)
Mutual labels:  floydhub
cozmo-tensorflow
🤖 Cozmo the Robot recognizes objects with TensorFlow
Stars: ✭ 61 (+205%)
Mutual labels:  floydhub
pastey
A lightweight, self-hosted paste platform
Stars: ✭ 65 (+225%)
Mutual labels:  language-detection
spacy-fastlang
Language detection using Spacy and Fasttext
Stars: ✭ 34 (+70%)
Mutual labels:  language-detection
quick-start
FloydHub quick start project - train TensorFlow model with MNIST dataset
Stars: ✭ 23 (+15%)
Mutual labels:  floydhub
floyd-docs
FloydHub's documentation code. Contributions welcome!
Stars: ✭ 66 (+230%)
Mutual labels:  floydhub
seqtolang
Multi-Langauge Identification
Stars: ✭ 26 (+30%)
Mutual labels:  language-identification
lidtk
Language Identification Toolkit
Stars: ✭ 17 (-15%)
Mutual labels:  language-identification
lidbox
End-to-end spoken language identification out of the box.
Stars: ✭ 39 (+95%)
Mutual labels:  language-identification
nlpserver
NLP Web Service
Stars: ✭ 76 (+280%)
Mutual labels:  language-detection
spacy-langdetect
A fully customisable language detection pipeline for spaCy
Stars: ✭ 86 (+330%)
Mutual labels:  language-detection
jstarcraft-nlp
专注于解决自然语言处理领域的几个核心问题:词法分析,句法分析,语义分析,语种检测,信息抽取,文本聚类和文本分类. 为相关领域的研发人员提供完整的通用设计与参考实现. 涵盖了多种自然语言处理算法,适配了多个自然语言处理框架. 兼容Lucene/Solr/ElasticSearch插件.
Stars: ✭ 92 (+360%)
Mutual labels:  language-detection
named-entity-recognition-template
Build a deep learning model for predicting the named entities from text.
Stars: ✭ 51 (+155%)
Mutual labels:  floydhub
UniLang
Translate text from one language to another using Google Translate
Stars: ✭ 33 (+65%)
Mutual labels:  language-detection
tongue
Elixir port of Nakatani Shuyo's natural language detector
Stars: ✭ 17 (-15%)
Mutual labels:  language-detection

Language Identification

Language identification is one of the most common feature of every Social Network or Web application, this is commonly paired with Machine Translation to improve the user experience and content accesibility(a must have in the 2.0 society). What can you use it for? This is a foundation for other features such as Machine Translation (as mentioned before) and post/tweets/articles and documents analysis.

Try it now

Run on FloydHub

Click this button to open a Workspace on FloydHub that will train this model.

Language identification of short pieces of text from Wikipedia

In this notebook we will build a deep learning model able to detect the languages from short piceces of text (140 characters, old Tweets lenght) with high accuracy using neural networks. The task is commonly solved using hard-coded rules or NLP library, but we will attack the problem using Deep Learning.

fhChat

Made with Sketch Group Chat

We have already gathered and extract the raw dataset from https://dumps.wikimedia.org for 7 languages: Italian, Spanish and French which are considered to be in Latin language group, English and German have also common roots. Czech and Slovakian are extremely similar and are considered to be one of major challenged in the language recognition.

iso-code language example
en English Hello world!
fr French Bonjour tout le monde!
es Spanish Hola mundo!
it Italian Ciao mondo!
de German Hallo welt!
cz Czech Ahoj světe!
sk Slovakian Dobrý deň svet!

We will:

  • Preprocess text data for NLP
  • Build and train Deep Neural Network using Keras and Tensorflow
  • Evaluate our model on the test set
  • Run the model on your own text!
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].