How do I export a neural network from MATLAB?
Mostrar comentarios más antiguos
I have a neural network which I trained using MATLAB. I want to export the network so I can use it with other frameworks, for example PyTorch. How do I do that?
Respuesta aceptada
Más respuestas (2)
Maria Duarte Rosa
el 25 de Jun. de 2018
Editada: Jon Cherrie
el 21 de Dic. de 2023
2 votos
The exportONNXNetwork function in Deep Learning Toolbox Converter for ONNX Model Format allows one to export a trained deep learning network to the ONNX™ (Open Neural Network Exchange) model format. The ONNX model can then be imported into other deep learning frameworks that support ONNX model import.
To use the network with TensorFlow, use the exportNetworkToTensorFlow function that is part of the Deep Learning Toolbox Converter for TensorFlow Models.
1 comentario
michael scheinfeild
el 6 de Ag. de 2018
still i have no success to import it to c++ from onnx there are many issues of compilation
michael scheinfeild
el 14 de Abr. de 2019
0 votos
after testing onnx i found that the output of convolutions is not the same as in matlab .
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!