Basics
Getting started
pip install everinfermy_api_key = 'my_key' # your API key, get it from us!
my_onnx_path ='my.onnx' # path to your .onnx model Hosting models
from everinfer import Client
client = Client(my_api_key)pipeline = client.register_pipeline(
"my_model",
[my_onnx_path],
meta={'description': 'this is my example model'}
)Running inference
Last updated