zetane / viewer

ML models and internal tensors 3D visualizer
1.14k stars 124 forks source link

input two images #7

Open 0-xl-0 opened 2 years ago

0-xl-0 commented 2 years ago

How do I input two images when testing a change detection model?

konafah commented 2 years ago

Hi, there's currently an issue with loading multiple inputs in the viewer interface. It will be fixed in an upcoming release.

In the meantime, you can use load multiple inputs through the Zetane Python API (Python 3.6-3.9):

pip install zetane
import zetane

viewer = zetane.OnnxViz()
viewer.create_onnx_model("path/to/model.onnx")
viewer.model_inference([...list of numpy inputs...])

More examples (Keras, PyTorch, or ONNX): https://docs.zetane.com/basic_models.html

Inference through the Viewer or the API requires a Pro account. You're welcome to join our slack channel (https://zetane.com/join-slack) for further assistance or to request a trial.

xiao-lin-hub commented 7 months ago

ModuleNotFoundError: No module named 'zetane.utils'