フィルターのクリア

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
  1 件のコメント
Elysi Cochin
Elysi Cochin 2013 年 3 月 18 日
thank u sir.... its working....

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by