forked from jorgecasas/php-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,33 @@ | ||
# php-ml | ||
PHP Machine learning library | ||
# PHP Machine learning library | ||
|
||
Fresh approach to machine learning in PHP. Note that at the moment PHP is not the best choice for machine learning but maybe this will change ... | ||
|
||
## Available Algorithms | ||
|
||
### 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 | ||
|
||
## Installation | ||
|
||
This repo will be published do packagist.org soon... | ||
|
||
## To-Do | ||
|
||
* implements more algorithms | ||
* integration with Lavacharts for data visualization | ||
|
||
## Testing | ||
|
||
After installation, you can launch the test suite in project root directory (you will need to install dev requiremnts with composer) | ||
|
||
``` | ||
bin/phpunit | ||
``` | ||
|
||
## License | ||
|
||
PHP-ML is released under the MIT Licence. See the bundled LICENSE file for details. | ||
|
||
## Author | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
{ | ||
"name": "php-ai/php-ml", | ||
"type": "library", | ||
"description": "PHP Machine learning library", | ||
"license": "MIT", | ||
"keywords": ["machine learning","pattern recognition","computational learning theory","artificial intelligence"], | ||
"homepage": "https://github.com/php-ai/php-ml", | ||
"authors": [ | ||
{ | ||
"name": "Arkadiusz Kondas", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": {}, | ||
"config": { | ||
"bin-dir": "bin" | ||
}, | ||
"require": { | ||
"php": ">=5.5.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.2" | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.