Hosting Machine Learning Models
This guide will help you host your machine learning model
Only ONNX files are supported, in case you have formats like .pth you need to convert them;
1. Converting your model to ONNX
If your model is not in ONNX format, you can follow the conversion tutorial video below. Additional resources are available on YouTube and in online articles.
2. Hosting your model


Provide all the details as expected, that is the classes (in their order as used in training the model), the image dimensions (still as used in training).

When not provided in order, model results will be misleading, also note that model wont be usable in case provided classes are invalid

3. Managing & Accessing the model

Andromeda Labs provides all the necessary compute to host and run your models, its your responsibility to develop to use the provided resources responsibly, misuse of our API will lead to a ban of your account
Click Create Asset, and choose what kind of asset you wish to create

Below is how you could use the playground

Model results, will be view from the side results pane, you can update the models after fine tuning, and upload new files;, by clicking the Edit option


Once you are satisfied with the playground, you can now integrate the model into your workflow, as shown below;
Accessing the model via the API
A model /Asset ID and the API endpoint URL is required before you can access the hosted model in your code.


When you have the MODEL (or asset) ID and the API URL, you can access the Model via the following implementations;
These implementations encompass what our API's expected, therefore, endeavor to customize your implementation;
Last updated