Borrar filtros
Borrar filtros

save the neural network output "net" to matfile

1 visualización (últimos 30 días)
Elysi Cochin
Elysi Cochin el 16 de Mzo. de 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....

Respuesta aceptada

Greg Heath
Greg Heath el 16 de Mzo. de 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

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by