bratao/prediction-io is a Laravel package for laravel predictionio client.
It currently has 24 GitHub stars and 1.631 downloads on Packagist (latest version 1.0.6).
Install it with composer require bratao/prediction-io.
Discover more Laravel packages by bratao
or browse all Laravel packages to compare alternatives.
Last updated
Based on endroid
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.
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.
$ composer require "bratao/prediction-io:1.*@dev"
app/config/app.php: 'Bratao\PredictionIO\PredictionServiceProvider'
app/config/app.php: 'Prediction' => 'Bratao\PredictionIO\Facade',
app/config/services.php: 'predictionio' => array(
'api' => 'http://localhost:8000/',
'key' => '0250b3f85ce33284f77c77f36b41010ef2c4fc5c',
),
<?php
// populate with users, items and actions
Prediction::createUser($userId);
Prediction::createItem($itemId);
Prediction::recordAction($userId, $itemId, 'view');
//Get a User or a Item
$item = Prediction::getUser($userId);
$user = Prediction::getItem($itemId);
//Delete a user or a item
Prediction::deleteUser($userId);
Prediction::deleteItem($itemId);
// get recommendations and similar items
$recommendations = Prediction::getRecommendations($userId, $engine, $count);
$similarItems = Prediction::getSimilarItems($itemId, $engine, $count);
This bundle is under the MIT license. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.