mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-01 22:18:10 +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
|