Slide 28
Slide 28 text
use PredictionIO\PredictionIOClient;
$client = PredictionIOClient::factory(array('appkey'=> '…'));
!
// Top N recommendations for user
$client->identify('florian');
$command = $client->getCommand(
'itemrec_get_top_n',
['pio_engine' => 'engine1', 'pio_n' => 10]
);
$rec = $client->execute($command);
print_r($rec);