Loading a DAGNetwork file from the workspace to Simulink
4 次查看(过去 30 天)
显示 更早的评论
After training YOLO v2, I have a DAGNetwork in the workspace. I want to send this to Simulink. I can't do this at all. All (From Workspace, Frome File, ... etc) options do not work.
0 个评论
回答(1 个)
Pratyush Roy
2021-7-27
Hi Hassan,
Getting a deep network into Simulink in R2020a requires the use of Legacy Code Tool and S-functions. In order to make sure you have the appropriate support packages, you can install both of these:
Then, you can refer to this workflow:
for an example of how to get the 'detect_lane' function into Simulink. You can replace 'detect_lane' with a function which executes your neural network to import it into Simulink.
If you are interested in trying out the updated workflows in R2020b, you can simply load your deep networks as-normal from inside a MATLAB Function block. For example, to load YOLO inside a function block in R2020b, I would simply execute:
persistent detectionnet;
if isempty(detectionnet)
detectionnet = coder.loadDeepLearningNetwork('yolo_tsr.mat','Detection');
end
The net is declared as persistent to ensure we do not load the net repeatedly each time the block is executed.
Hope this helps!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!