mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
6 lines
212 B
Go
6 lines
212 B
Go
// Package naive implements different Naive Bayes algorithms. This
|
|
// family of classifiers are based on the Bayes theorem. The naivité
|
|
// comes from the assumption that features are independent.
|
|
|
|
package naive
|