Custom Vision on HoloLens

允我心安 提交于 2019-12-24 21:33:27

问题


I'm using custom Vision ( https://www.customvision.ai ) to train a model for object recognition. After 10 Iterations of training it suddenly stopped loading. I always export it as onnx and load it on the HoloLens (with this tutorial: https://mtaulty.com/2018/03/29/third-experiment-with-image-classification-on-windows-ml-from-uwp-on-hololens-in-unity/ ). And it worked for quite some time (though the results weren't perfect), but after I continued to train the model to find the things better it simply stopped working.

My Scripts are pretty much like the ones in the Tutorial, just with my Tags and some different names. MainScript.cs https://pastebin.com/hxLrjXqv - my detect.cs (like the daschund.cs in the tutorial) https://pastebin.com/sP4PWNV6

So I deleted my project on Custom Vision and started trained my model from the ground up again. Only have like 40 pictures for 2 Tags with Multiclass (Single tag per image). I only want to know if there is a pointing finger in the picture or not. When deploying on the HoloLens it doesn't get over the line in MainScript

LearningModelEvaluationResultPreview evalResult = await learningModel.EvaluateAsync(binding, string.Empty);

I don't know what's the problem. If anyone has an idea how to fix it or a different source for how to learn how to run an Object Recognition Model on the HoloLens I would be happy.

Thanks in advance


回答1:


Custom Vision service updated to allow download of ONNX v1.2 models. Solved my issue.




回答2:


It could be due to the subscription level you are using. You subscription will limit the number of models you can have in storage as a result of training. You subscription is probably limiting you to retaining 10 iterations at a time.

If you go into the CustomVision.AI portal and look at your project, click on Performance tab and you will see all of your training iterations. Delete the oldest one and I suspect you will be able to train your model again, if I understand your problem correctly.



来源:https://stackoverflow.com/questions/52555299/custom-vision-on-hololens

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!