Package Data | |
---|---|
Maintainer Username: | potelo |
Maintainer Contact: | bruno@potelo.com.br (Bruno Cabral) |
Package Create Date: | 2016-03-22 |
Package Last Update: | 2021-01-27 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:04:58 |
Package Statistics | |
---|---|
Total Downloads: | 71 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 5 |
Total Forks: | 1 |
Total Open Issues: | 0 |
*Based on michaeljhopkins
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 "potelo/laravel-predictionio:0.1.*@dev"
app/config/app.php
: Potelo\LaravelPredictionIO\Provider\PredictionIOServiceProvider::class
app/config/app.php
: 'EngineClient' => Potelo\LaravelPredictionIO\Facades\EngineFacade::class,
'EventClient' => Potelo\LaravelPredictionIO\Facades\EventFacade::class,
app/config/services.php
: 'predictionio' => [
'key' => '0250b3f85ce33284f77c77f36b41010ef2c4fc5c',
'url' => 'http://localhost:7200'
],
This project is licensed using DBAD. Go have a blast.