mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-24 13:57:33 +00:00
create first class :)
This commit is contained in:
parent
501c020f67
commit
97e3f82c6e
@ -6,7 +6,9 @@ Fresh approach to machine learning in PHP. Note that at the moment PHP is not th
|
||||
|
||||
### Classification
|
||||
|
||||
* **Naive Bayes** - a set of supervised learning algorithms based on applying Bayes’ theorem with the “naive” assumption of independence between every pair of features
|
||||
Identifying to which category an object belongs to.
|
||||
|
||||
* **Naive Bayes** - algorithm based on applying Bayes’ theorem with the “naive” assumption of independence between every pair of features
|
||||
|
||||
## Installation
|
||||
|
||||
|
8
src/Phpml/Classification/NaiveBayes.php
Normal file
8
src/Phpml/Classification/NaiveBayes.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Phpml\Classification;
|
||||
|
||||
class NaiveBayes
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user