Clear Filters
Clear Filters

Getting error when building trained network into ROS by Simulink ?

1 view (last 30 days)
function out = SegNet(in)
persistent mynet;
if isempty(mynet)
mynet = coder.loadDeepLearningNetwork('real_pineDL_SegNet0214.mat','net');
end
a=predict(mynet,in); %(480,640,2)
out = a(:,:,1) %(480,640)
Hi, I'm trying to generate the trained neural network into ROS by Simulink, but there were some errors.(above is my MATLAB Function in Simulink)
I have built MKL-DNN library by following the method on the following page, but it says it cannot find my compiler (detailed error is attached).
  1 Comment
Hanumanth Hanumantharayappa
Hi Sung,
From the error log, it seems the compiler that you are using is not supported. Could you let me know what compiler you are using? Also, I don't think we can use the MKL-DNN library on the target hardware board. What is the hardware generated code deployed on to?
Hanumanth

Sign in to comment.

Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!