sanjaymk908
sanjaymk908
> I was not able to access the model from provided link. I believe that [zipmap op ](https://onnx.ai/onnx/operators/onnx_aionnxml_ZipMap.html)outputs map/dictionary not float You can try "wget https://yella.co.in/cvd-samples/classifier.onnx" - worked for me.
> > I believe that [zipmap op ](https://onnx.ai/onnx/operators/onnx_aionnxml_ZipMap.html)outputs map/dictionary not float > > The Objective-C API doesn't support non-tensor ORTValue types at the moment and ZipMap does not output a...
One workaround that worked for me was: 1. Modify the current onnx graph. To output a tensor of floats directly: import onnx from onnx import helper, shape_inference def convert_output_to_float_tensor(onnx_model_path, new_model_path):...