Inferrd
Inferrd.com is machine learning hosting platform for Tensorflow, Keras, Scikit and spaCy.
Coverage: 100%
Use a model
To use a model though this package, you need to locate the model's url.
Go to your dashbord, select the model and and go the Use tab. The model url should be at the top of the debug console.
It looks like https://api.inferrd.com/m/<key>
const inferrd = require('inferrd')
async function makePrediction(inputs) {
const outputs = await inferrd.predict('https://api.inferrd.com/m/<key>', inputs)
}
makePrediction([0,1])