dev-master
9999999-devLaravel 5 wrapper for PredictionIO v0.9.*
MIT
The Requires
by Bruno Cabral
laravel api wrapper machine learning predictionio
Wallogit.com
2017 © Pedro Peláez
Laravel 5 wrapper for PredictionIO v0.9.*
*Based on michaeljhopkins, (*1)
The Laravel PredictionIO library provides a client which offers easy access to a PredictionIO recommendation engine. PredictionIO is an open source machine learning server for software developers to create predictive features, such as personalization, recommendation and content discovery., (*2)
Through a small set of simple calls, all server functionality is exposed to your application. You can add users and items,
register actions between these users and items and retrieve recommendations deduced from this information by any
PredictionIO recommendation engine. Applications range from showing recommended products in a
web shop to discovering relevant experts in a social collaboration network., (*3)
$ composer require "linkthrow/laravel-5-predictionio"
app/config/app.php:LinkThrow\LaravelPredictionIO\Provider\PredictionIOServiceProvider::class
app/config/app.php: 'EngineClient' => LinkThrow\LaravelPredictionIO\Facades\EngineFacade::class,
'EventClient' => LinkThrow\LaravelPredictionIO\Facades\EventFacade::class,
app/config/services.php: 'predictionio' => [
'key' => '0250b3f85ce33284f77c77f36b41010ef2c4fc5c',
'url' => 'http://localhost:7200'
],
// assume you have a user with user ID 5 $response = EventClient::setUser(5);
// assume you have a book with ID 'bookId1' and we assign 1 as the type ID for book
$response = EventClient::setItem('bookId1', array('itypes' => 1));
// assume this user has viewed this book item
EventClient::recordUserActionOnItem('view', 5, 'bookId1');
// assume you have created an itemrank engine on localhost:8000
// we try to get ranking of 5 items (item IDs: 1, 2, 3, 4, 5) for a user (user ID 7)
$response = EngineClient::sendQuery(array('uid'=>7, 'iids'=>array(1,2,3,4,5)));
print_r($response);
This project is licensed using DBAD. Go have a blast., (*4)
Laravel 5 wrapper for PredictionIO v0.9.*
MIT
laravel api wrapper machine learning predictionio