Introduction
Last updated
Was this helpful?
Last updated
Was this helpful?
In this tutorial series you will learn how to integrate your custom model into Supervisely by creating a simple serving app.
✅ Integration process is simple - the only thing you need is to implement a method of how your model gets prediction of an image. Supervisely SDK will handle the rest automatically.
Once you implement a serving application for your NN architecture, you can do a lot of things, like inference on your data for pre-labeling to speed up annotation, perform active learning, analyze and debug your model with various data science tools, combine models into pipelines and many more.
Find more use cases and video tutorials on .
Generally speaking, your model will be compatible with the entire ecosystem of applications in Supervisely.
Here are the examples of apps you might be interested to use with your model:
- apply NN to your images and save predictions
- use NN right in labeling interface
- combine models into pipelines
- predict and track objects on videos
Analyze model performance metrics (, )
Inference via Session API: You can also connect to the model and get the inference in a couple of lines with the help of the sly.nn.inference.Session
class. See our .
Just pick one you need and get started: