Convert Matlab CNN to c# to be used in .net desktop app.
5 ビュー (過去 30 日間)
古いコメントを表示
Hardit Singh
2020 年 2 月 17 日
コメント済み: JESUS DAVID ARIZA ROYETH
2020 年 2 月 17 日
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!