Skip to main content
Epigos offers an API that allows you to make predictions from your model. This API is accessible within the Epigos Python SDK.
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 the predict() function when you load a classification model.

classification()

Loads classification model deployed on the platform.

predict()

Makes predictions for the classification model.

Example using remote url

Example using image path

Object detection

You can detect objects in an image using the detect() function when you load an object detection model.

object_detection()

Loads an object detection model deployed on the platform.

detect()

Makes detection for the object detection model.

Example using remote url

Example using image path

Example using annotation options


Checkout the code on Github