inferrd
v1.0.6
Published
Inferrd.com nodejs package
Downloads
2
Readme
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 your api key and the model id.
- API Key: Find it in your profile page.
- Model Id: Find it on the dashboard of your model.
const inferrd = require('inferrd')
inferrd.auth('<api key>')
await inferrd.predict('<modelId>', inputs).then(outputs => {
// outputs will contain the array or object returned by your model
})