Convert Matlab CNN to c# to be used in .net desktop app.
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
JESUS DAVID ARIZA ROYETH
2020-2-17
yes
you can use the exportONNXNetwork function to take your neural network to other programs that support this same format
2 个评论
JESUS DAVID ARIZA ROYETH
2020-2-17
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
更多回答(0 个)
另请参阅
类别
在 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!