Here are some files for converting SAM models to make it available in the BioEngine (local deployment: https://github.com/oeway/bioengine/).
The tree strcture for the model repository is like this:
├── sam-backbone
│ ├── 1
│ │ └── model.pt
│ └── config.pbtxt
└── sam-decoder
├── 1
│ └── model.onnx
└── config.pbtxt
(the folder named 1
is the version number, it's a folder containing the model file, we can have multiple versions, e.g. a 2
folder)
For longer term, it would be nice if we can integrate the SAM model here: https://github.com/bioimage-io/bioengine-model-runner and upload to our model repository for the BionEinge.
To connect to the BioEngine and run the model, take a look at the file test_bioengine_sam.py
.
You can also run it via: https://jupyter.imjoy.io/ (make sure you do %pip install imjoy-rpc numpy
)
In the code test_bioengine_sam.py
, we used async api to the BioEngine (since it will work with JupyterLite in the browser and the native Python). If you run it in native Python, you can also do synchronous calls by replacing from imjoy_rpc.hypha import connect_to_server
to from imjoy_rpc.hypha.sync import connect_to_server
(and you can then remove all the async/await). About the imjoy-rpc api with synchronous wrapper see here.
The full code for native Python using the synchronous API is in test_bioengine_sam_sync.py
.
You can find an example for napari here: https://github.com/bioimage-io/napari-bioimageio/blob/main/examples/bioengine-app-demo/bioengine_app_demo/_bioengine_app.py#L7C1-L7C58
To support training, we would like to get a python class following this interactive training interface.