Nanonets provides an easy to use API to communicate with it's servers and build machine learning models and make predictions on image data. The models that can be built are -
- Image Classification
- Multi-label Classification
- Object Detection
- OCR
Check us out at https://nanonets.com.
To find out about our GUI solution or to get your API key, check out https://app.nanonets.com
Run the following command from your terminal -
npm install nanonets
http://app.nanonets.com/#/keys
You can run inference on a single image or multiple images. You can use urls as well as local files.
const nanonets = require('nanonets')('API Key')
let resp = nanonets.predict({modelType : 'OCR', filePath : 'IMAGE_PATH', modelId : 'MODE_ID'})
resp.json().then(x => console.log(x))