create first class :)

This commit is contained in:
Arkadiusz Kondas 2016-02-08 23:20:08 +01:00
parent 501c020f67
commit 97e3f82c6e
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,8 @@
<?php
namespace Phpml\Classification;
class NaiveBayes
{
}