save a neural net in matlab 2017b, can't load it in 2018b
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (5)
Steven Lord
el 8 de Nov. de 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 comentario
Gidon Eshel
el 8 de Nov. de 2018
1 comentario
Steven Lord
el 8 de Nov. de 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.
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!