An open API service indexing awesome lists of open source software.

https://github.com/aep/moxgo

cross platform inference runtime
https://github.com/aep/moxgo

Last synced: about 1 month ago
JSON representation

cross platform inference runtime

Awesome Lists containing this project

README

          

MOXGO - the ollama for ONNX
============================

get an easy http api for ONNX models on android,windows,linux,mac,ios with native acceleration.

> moxgo serve

the builtin cli makes it easy to play with popular classification models

> moxgo pull birdnet
> moxgo run birdnet --file what_bird_is_this.mp3

> moxgo pull yolo11n
> moxgo run yolo11n --file is_this_a_dog.png

adding custom models
--------------------

you can add your own ONNX models without publishing them to the registry.
place the model files in `~/.moxgo/models//` with a `manifest.json` and a `model.onnx`.

~/.moxgo/models/my-model/
├── manifest.json
├── model.onnx
└── labels.csv (optional)

the manifest describes inputs, outputs, and runtime options:

```json
{
"inputs": {
"images": {
"type": "image",
"width": 640,
"height": 640
}
},
"outputs": {
"output0": {
"labels": "coco80"
}
}
}
```