mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-28 15:56:36 +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
|
### 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
|
## 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