JasonFengGit/RNN-Language-Classifier
A Language Classifier powered by Recurrent Neural Network implemented in Python without AI libraries. AI from scratch.
This tool helps language practitioners quickly identify the origin of individual words. You input a single word, and it tells you if it's English, Spanish, Finnish, Dutch, or Polish, along with a confidence score. This is useful for linguists, translators, or anyone analyzing text in these five languages.
No commits in the last 6 months.
Use this if you need to determine the language of individual words from a limited set of five European languages with a reasonable degree of accuracy.
Not ideal if you need to classify sentences, paragraphs, or words in languages beyond English, Spanish, Finnish, Dutch, and Polish, or if you require extremely high accuracy for critical applications.
Stars
57
Forks
12
Language
Python
License
MIT
Category
Last pushed
Sep 07, 2021
Commits (30d)
0
Get this data via API
curl "https://pt-edge.onrender.com/api/v1/quality/ml-frameworks/JasonFengGit/RNN-Language-Classifier"
Open to everyone — 100 requests/day, no key needed. Get a free key for 1,000/day.
Higher-rated alternatives
digantamisra98/Mish
Official Repository for "Mish: A Self Regularized Non-Monotonic Neural Activation Function" [BMVC 2020]
Sentdex/nnfs_book
Sample code from the Neural Networks from Scratch book.
itdxer/neupy
NeuPy is a Tensorflow based python library for prototyping and building neural networks
vzhou842/cnn-from-scratch
A Convolutional Neural Network implemented from scratch (using only numpy) in Python.
nicklashansen/rnn_lstm_from_scratch
How to build RNNs and LSTMs from scratch with NumPy.