Convert Matlab CNN to c# to be used in .net desktop app.
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hardit Singh
el 17 de Feb. de 2020
Comentada: JESUS DAVID ARIZA ROYETH
el 17 de Feb. de 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 comentarios
Respuesta aceptada
JESUS DAVID ARIZA ROYETH
el 17 de Feb. de 2020
yes
you can use the exportONNXNetwork function to take your neural network to other programs that support this same format
2 comentarios
JESUS DAVID ARIZA ROYETH
el 17 de Feb. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!