Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunsided/bayes-classification
C# based experiments in Bayesian classification
https://github.com/sunsided/bayes-classification
bayes-classification classifier csharp spam
Last synced: about 2 months ago
JSON representation
C# based experiments in Bayesian classification
- Host: GitHub
- URL: https://github.com/sunsided/bayes-classification
- Owner: sunsided
- License: mit
- Created: 2014-07-10T18:22:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T19:11:22.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T02:31:13.383Z (2 months ago)
- Topics: bayes-classification, classifier, csharp, spam
- Language: C#
- Size: 309 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Naive Bayes Classification
A naive Bayes classifier with Laplace smoothing for arbitrary features written in C#.
## Directory structure
* `src` contains the library's source code
* `test` contains the unit tests
* `samples` contains the test application## SmsSpam example
The SmsSpam demo application uses the [SMS Spam Collection v.1](http://www.dt.fee.unicamp.br/~tiago/smsspamcollection/) in order to train the classifier with Spam and Ham SMS text data and then match individual SMS against that. Cleaned, but otherwise raw words are used (i.e. stripped from whitespace, numbers, punctuation, ...) as tokens.
## License
This code is, if not otherwise stated, available under MIT License. See `LICENSE` file for more information.