필터 지우기
필터 지우기

save the neural network output "net" to matfile

조회 수: 1 (최근 30일)
Elysi Cochin
Elysi Cochin 2013년 3월 16일
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....

채택된 답변

Greg Heath
Greg Heath 2013년 3월 16일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by