https://github.com/pharo-ai/naive-bayes-classifier
A multinomial Naive Bayes classifier implemented in Pharo
https://github.com/pharo-ai/naive-bayes-classifier
machine-learning naive-bayes-classifier natural-language-processing pharo
Last synced: 4 months ago
JSON representation
A multinomial Naive Bayes classifier implemented in Pharo
- Host: GitHub
- URL: https://github.com/pharo-ai/naive-bayes-classifier
- Owner: pharo-ai
- License: mit
- Created: 2019-03-14T18:41:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-19T14:40:23.000Z (over 1 year ago)
- Last Synced: 2024-05-18T19:28:56.569Z (about 1 year ago)
- Topics: machine-learning, naive-bayes-classifier, natural-language-processing, pharo
- Language: Smalltalk
- Size: 37.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - pharo-ai / NaiveBayesClassifier - Implementation of a multinomial Naive Bayes classifier in Pharo that can be used for simple spam detection and sentiment analysis. (Artificial Intelligence and Machine Learning)
README
# Naive Bayes Classifier
[](https://github.com/pharo-ai/NaiveBayesClassifier/actions/workflows/test.yml)
[](https://coveralls.io/github/pharo-ai/naive-bayes-classifier?branch=master)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://raw.githubusercontent.com/olekscode/NaiveBayesClassifier/master/LICENSE)This is a simple implementation of a multinomial Naive Bayes classifier in Pharo that can be used for simple spam detection and sentiment analysis.
## Installing
```Smalltalk
Metacello new
baseline: 'AINaiveBayesClassifier';
repository: 'github://pharo-ai/NaiveBayesClassifier/src';
load.
```