oryx-js

1.0.5 • Public • Published

Oryx-JS

Basic module to communicate with Oryx.

Installation & configuration

Install Oryx

See the Oryx doc for installation, you can get releases here.

Install the module

npm install oryx-js

Run your Oryx server and computation instances

Create a file called oryx.conf with the following informations :

model=${als-model}
model.local-computation=false
model.local-data=false
model.instance-dir=/user/name/repo
model.features=25
model.lambda=0.065
serving-layer.api.port=8091
computation-layer.api.port=8092

And run the jars with the following lines :

java -Dconfig.file=oryx.conf -jar oryx-computation-x.y.z.jar
java -Dconfig.file=oryx.conf -jar oryx-serving-x.y.z.jar

Usage

var OryxService = require('oryx-js')({
    host: 'localhost',
    port: '8091',
    user: user,
    password: pwd
});

Functions

Core

ready

Parameters

  • func callback(err, res, body)

refresh

Parameters

  • [func callback(err, res, body)]

ingest

Parameters

  • data
  • func callback(err, res, body)

getBecause

Parameters

  • int user_id
  • int item_id
  • int count
  • func callback(err, res, body)

getMostSurprising

Parameters

  • int count
  • func callback(err, res, body)

getPopularRepresentativeItems

Parameters

  • func callback(err, res, body)

getMostActiveUsers

Parameters

  • int count
  • int offset
  • func callback(err, res, body)

getMostPopularItems

Parameters

  • int count
  • int offset
  • func callback(err, res, body)

getAllUsers

Parameters

  • func callback(err, res, body)

getAllItems

Parameters

  • func callback(err, res, body)

getKnownItems

Parameters

  • int user_id
  • func callback(err, res, body)

Recommendation

get

Parameters

  • int user_id
  • int count
  • int offset
  • func callback(err, res, body)

getToMany

Parameters

  • [int] user_ids
  • int count
  • int offset
  • func callback(err, res, body)

getForAnonymous

Parameters

  • [{ id: int, val: float }] score_params
  • int count
  • int offset
  • func callback(err, res, body)

Similiraty

get

Parameters

  • [int] item_ids
  • int count
  • int offset
  • func callback(err, res, body)

getToItem

Parameters

  • int main_item_id
  • [int] item_ids
  • func callback(err, res, body)

Estimation

get

Parameters

  • int user_id
  • [int] item_ids
  • func callback(err, res, body)

getForAnonymous

Parameters

Parameters

  • int item_id
  • [{ id: int, val: float }] score_params
  • func callback(err, res, body)

Preferences

set

Parameters

  • int user_id
  • int item_id
  • [float value]
  • [func callback(err, res, body)]

delete

Parameters

  • int user_id
  • int item_id
  • [func callback(err, res, body)]

DEVELOPMENT

Info

The code was developped and tested with Oryx 0.3.0, functions from Oryx 1.x were added but not tested for now.

TODO

Authentication

Handle authentication, none for now

Data format

Handle csv/ json parsing

Readme

Keywords

Package Sidebar

Install

npm i oryx-js

Weekly Downloads

4

Version

1.0.5

License

ISC

Last publish

Collaborators

  • cesar_bere