How do I export a neural network from MATLAB?
Show older comments
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?
Accepted Answer
More Answers (2)
Maria Duarte Rosa
on 25 Jun 2018
Edited: Jon Cherrie
on 21 Dec 2023
2 votes
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 Comment
michael scheinfeild
on 6 Aug 2018
still i have no success to import it to c++ from onnx there are many issues of compilation
michael scheinfeild
on 14 Apr 2019
0 votes
after testing onnx i found that the output of convolutions is not the same as in matlab .
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!