fredwu/simple_bayes
A Naive Bayes machine learning implementation in Elixir.
This project helps classify documents or pieces of text into predefined categories, like sorting emails into 'spam' or 'not spam', or tagging articles as 'sports' or 'politics'. You input text examples labeled with their correct categories, and it outputs a system that can then predict the category of new, unseen text. This is useful for anyone needing to automatically organize or filter large volumes of text, such as content managers, customer support teams, or researchers.
396 stars. No commits in the last 6 months.
Use this if you need to categorize short texts or documents efficiently and you have a good set of examples for each category.
Not ideal if your categorization problems require understanding complex relationships between words that go beyond simple frequency or co-occurrence, or if you need to classify images or other non-textual data.
Stars
396
Forks
24
Language
Elixir
License
—
Category
Last pushed
Sep 25, 2017
Commits (30d)
0
Get this data via API
curl "https://pt-edge.onrender.com/api/v1/quality/ml-frameworks/fredwu/simple_bayes"
Open to everyone — 100 requests/day, no key needed. Get a free key for 1,000/day.
Higher-rated alternatives
cardmagic/classifier
A general classifier module to allow Bayesian and LSI classifications.
ptnplanet/Java-Naive-Bayes-Classifier
A java classifier based on the naive Bayes approach complete with Maven support and a runnable example.
kevalmorabia97/Naive-Bayes-Text-Classifier-in-Java
Naive Bayes Classification used to classify movie reviews as positive or negative
msamsami/wnb
General (mixed) and weighted naive Bayes classifiers.
surmon-china/naivebayes
NaiveBayes classifier for JavaScript