You’ll need to Create an API Key to
Authentication with Epigos AI.
Image classification
You can predict the class or label of an image using thepredict() function when you load a classification model.
classification()
Loads classification model deployed on the platform.predict()
Makes predictions for the classification model.Payload
The function expects either
imageUrl or imageBase64 to provided else it
will raise validation errors.Example prediction
Object detection
You can detect objects in an image using thedetect() function when you load an object detection model.
objectDetection()
Loads an object detection model deployed on the platform.detect()
Makes detection for the object detection model.Payload
Options
The function expects either
imageUrl or imageBase64 to provided else it
will raise validation errors.Example detection
Example detection with annotation options
Checkout the code on Github

