save a neural net in matlab 2017b, can't load it in 2018b
8 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(5 个)
Steven Lord
2018-11-8
Do you have Deep Learning Toolbox installed in your installation of release R2018b? Use the ver function to check. I suspect you don't.
Gidon Eshel
2018-11-8
1 个评论
Steven Lord
2018-11-8
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!