Effacer les filtres
Effacer les filtres

save the neural network output "net" to matfile

1 vue (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 16 Mar 2013
i wanted to save the neural network output "net" to matfile..... is it possible to do so.... i did like this....
dbFeatures(kk) = net;
kk = kk + 1;
when i process all the images...
i save the dbFeatures as
save dbFeatures dbFeatures
but i'm getting error as
??? The following error occurred converting from network to double:
Error using ==> double
Conversion to double from network is not possible.
Error in ==> TrainDataset at 135
dbFeatures(kk) = net;
please can someone rectify it for me....

Réponse acceptée

Greg Heath
Greg Heath le 16 Mar 2013
I don't know why you are using the term 'features' for describing a net. Nets can be thought of as structures with different sizes. Therefore try using cells:
savednets{kk} = net; . . .
save savednets
However, check if you can load the nets individually, e.g.,
load savednets{2}
If not, save them individually by name
save net2
etc.
Hope this helps
Thank you for formally accepting my answer
Greg
  1 commentaire
Elysi Cochin
Elysi Cochin le 18 Mar 2013
thank u sir.... its working....

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by