HoloLens上的onnx 1.2模型(自定义视觉)

时间:2018-10-17 11:28:09

标签: microsoft-cognitive hololens azure-cognitive-services onnx microsoft-custom-vision

这是我上一篇文章的更具体的延续:Custom Vision on HoloLens

我仍在使用此博客文章中的Unity项目:https://mtaulty.com/2018/03/29/third-experiment-with-image-classification-on-windows-ml-from-uwp-on-hololens-in-unity/

我遇到的问题是,我自己的导出模型有时无法与代码一起使用。现在可以导出版本1.2的onnx模型,但是旧代码似乎与新版本不兼容。

在MainScript的var evalOutput = await this.learningModel.EvaluateAsync(this.inputData);行中,它抛出The binding is incomplete or does not match the input/output description. (Exception from HRESULT: 0x88900002)

有人知道我需要更改以便与HoloLens上的新版本一起使用吗?预先感谢!

1 个答案:

答案 0 :(得分:4)

您可以在此处找到类似的问题:Windows ML's OS requirement 总而言之,您需要更新PC和Hololens是正确的,但是在RS5的生产版本上,您需要的内部版本号为17763。

您可能还会遇到以下问题:Cannot load model using WinML 绑定设置不正确的地方。

如果仍然有问题,请发布您使用的SDK和OS版本以及ONNX模型版本。