Convert Matlab CNN to c# to be used in .net desktop app.
5 views (last 30 days)
Show older comments
Hardit Singh
on 17 Feb 2020
Commented: JESUS DAVID ARIZA ROYETH
on 17 Feb 2020
Is there a way to convert a convulutional neural network(CNN) that I have trained in Matlab to C# so that I can implement in a .net desktop app with visual studio?
0 Comments
Accepted Answer
JESUS DAVID ARIZA ROYETH
on 17 Feb 2020
yes
you can use the exportONNXNetwork function to take your neural network to other programs that support this same format
2 Comments
JESUS DAVID ARIZA ROYETH
on 17 Feb 2020
some like this:
load filename.mat %here put your real file name
filename = 'newnet.onnx';
exportONNXNetwork(yournet,filename)%in yournet put the variable than contains your neural net
More Answers (0)
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!