Some feedback is here.
Created by: WolffyChen
Thank you for this great work. Some feedback is as follows.
-
I have found that when my net has multi outputs, the program crashes. And I try to fix it in "mobile-deep-learning/src/net.cpp:87", "for(int i = start; i <= end; i++)" should be "for(int i = start; i < end; i++)".
-
The caffe2mdl tool does not support that input's width not equal to height. It is a limit that many tasks need to have different input width and height.
-
The predict output does not support get result by layer name and get result's shape. Should these features will be support in the future?
Best Regards, WolffyChen