这是我之前帖子的更具体的延续:HoloLens 上的自定义视觉
我仍在使用这篇博文中的 Unity 项目:https ://mtaulty.com/2018/03/29/third-experiment-with-image-classification-on-windows-ml-from-uwp-on-hololens-团结一致/
我遇到的问题是我自己的导出模型在某些时候无法与代码一起使用。现在可以导出1.2版本的onnx模型了,但是老代码好像和新版本不兼容了。
var evalOutput = await this.learningModel.EvaluateAsync(this.inputData);
在它抛出的 MainScript行中The binding is incomplete or does not match the input/output description. (Exception from HRESULT: 0x88900002)
有人知道我需要更改什么以便它适用于 HoloLens 上的新版本吗?提前致谢!