2017 © Pedro Peláez
 

library nbclassifier

A simple naive bayes text/document classier. This library allows classifying text to one or more classes.

image

mcheptea/nbclassifier

A simple naive bayes text/document classier. This library allows classifying text to one or more classes.

  • Sunday, May 15, 2016
  • by mcheptea
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 3 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHP Naive Bayes Classifier

A simple php based Naive-Bayes text classifier., (*1)

The Naive-Bayes classifier is a statistical classifier which relies on a "trained set" to classify documents., (*2)

Documents are chunks of plain text, classes are any type of class structure a document ay fall under., (*3)

Examples: * Restaurant Menu <-> Food Type * Vocabulary <-> Language * Novel <-> Author, (*4)

How does it work?

Before starting to use the classifier you should train it., (*5)

This package comes with both a Trainer and a Classifier. To achieve good performance it is recommended to train at least 200 documents before using the classifier., (*6)

Note: The 200 document number is an arbitrarily high number. As with any machine learner a golden mean number should be encountered for each specific case., (*7)

Installation

..., (*8)

Usage

..., (*9)

License

MIT https://opensource.org/licenses/MIT, (*10)

The Versions

15/05 2016

dev-master

9999999-dev

A simple naive bayes text/document classier. This library allows classifying text to one or more classes.

  Sources   Download

MIT

The Requires

 

by Mark Cheptea