Convert Matlab CNN to c# to be used in .net desktop app.

32 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

JESUS DAVID ARIZA ROYETH
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
you can use Matlab Coder to generate C/C++ code
  2 comentarios
Hardit Singh
Hardit Singh el 17 de Feb. de 2020
For the second thing you mentioned, how do I convert my network if the trained file is a .mat file?
JESUS DAVID ARIZA ROYETH
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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre AI for Wireless en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by