https://github.com/lestrrat-go/naivebayes
Yet Another Naive-Bayesian filter algorithm
https://github.com/lestrrat-go/naivebayes
Last synced: about 2 months ago
JSON representation
Yet Another Naive-Bayesian filter algorithm
- Host: GitHub
- URL: https://github.com/lestrrat-go/naivebayes
- Owner: lestrrat-go
- License: mit
- Created: 2014-03-10T04:30:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-08T13:07:10.000Z (about 11 years ago)
- Last Synced: 2024-06-20T15:58:08.518Z (about 1 year ago)
- Language: Go
- Size: 156 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-naivebayes
=============Yet Another Naive-Bayesian filter algorithm
SEE ALSO
========[https://github.com/jbrukh/bayesian](https://github.com/jbrukh/bayesian), which I based my implementation on
Why did I fork? mostly stylistic problems, which seemed like required an API change. And API changes are never easy to press on others. Mainly:
* Remove use of panic() - panics are bad in golang
* Return errors
* Name things Get\*() et al
* Allow more parallism by working closer with channels