bratao / PredictionIO by bratao
forked from abandroid/prediction-io

Laravel PredictionIO Client
1,553
24
3
Package Data
Maintainer Username: bratao
Maintainer Contact: bruno.cabral@ufba.br (Bruno Cabral)
Package Create Date: 2014-06-06
Package Last Update: 2014-09-26
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:20:33
Package Statistics
Total Downloads: 1,553
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 24
Total Watchers: 3
Total Forks: 5
Total Open Issues: 0

Laravel PredictionIO

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.

Installation

  • Install library and dependencies:
$ composer require "bratao/prediction-io:1.*@dev"
  • Add a provider in app/config/app.php:
    'Bratao\PredictionIO\PredictionServiceProvider'
  • Add an alias in app/config/app.php:
    'Prediction'      => 'Bratao\PredictionIO\Facade',
	'predictionio' => array(
		'api' => 'http://localhost:8000/',
		'key' => '0250b3f85ce33284f77c77f36b41010ef2c4fc5c',
	),

Usage

<?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);

License

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.

Thanks to

  • Braunson Yager
  • Laurent Goussard