save a neural net in matlab 2017b, can't load it in 2018b
8 views (last 30 days)
Show older comments
Hi, the ANN in question is just a simple FF ANN stored in a file. But when I try loading it into matlab 2018b using
load('JacobianHessian.mat')
I get the following error message:
Warning: Class 'network' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'Net' have been converted to structures.
Any workaround?
"
2 Comments
Answers (5)
Steven Lord
on 8 Nov 2018
Do you have Deep Learning Toolbox installed in your installation of release R2018b? Use the ver function to check. I suspect you don't.
1 Comment
Gidon Eshel
on 8 Nov 2018
1 Comment
Steven Lord
on 8 Nov 2018
The feedforwardnet function is part of Deep Learning Toolbox, as you can see from the navigation frame on the left part of its documentation page. [In release R2017b it was part of Neural Network Toolbox; that toolbox was renamed in release R2018b.]
FYI according to the product requirements page Deep Learning Toolbox requires only MATLAB. It does recommend that you have six other products. [If you want to use GPU support in Deep Learning Toolbox, Parallel Computing Toolbox moves from being recommended to being required.]
Statistics and Machine Learning Toolbox is not one of the recommended products, so you don't need Statistics and Machine Learning Toolbox to use feedforwardnet. It may be required for another part of your application or project, though.
See Also
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!