2017 © Pedro PelĂĄez
 

library machinelearning

image

zeeml/machinelearning

  • Saturday, July 22, 2017
  • by crapougnax
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

build, (*1)

MachineLearning

Machine Learning Library in PHP, (*2)

$ml = new ML(Dataset::factory('/path/to/csv'));

$ml
    ->using([LinearRegression::class, LogisticRegression::class])
    ->epochs(12)
    ->fit()
;

$ml
    ->using([KNearestNeighbors::class])
    ->epochs(2)
    ->fit()
;

$ml->test();

$ml->stats();

$ml->predict(LinearRegression::class, Dataset::factory('/path/to/newCsv'));

The Versions

22/07 2017

dev-master

9999999-dev

  Sources   Download

The Requires

 

The Development Requires

by Olivier Lépine
by Adil El Kanabi