Problems with a saved neural network

3 Ansichten (letzte 30 Tage)
Harold
Harold am 29 Apr. 2013
Kommentiert: keirth kilat am 6 Mai 2018
I've posted this question in another forum but decided to ask it here for a better chance at a response.
I'm having problems passing a neural network as a handle through a pushbutton callback. I use a menu to select the neural network file (mat file that was saved from a previous successful training session) and save this network as handles.neural_net = load('trained_net.mat'). Upon clicking the run neural network button, the network is run by netfunc(handles.neural_net, inputs,targets) where I've already specified the inputs and targets in the program. I get an error pointing within netfunc.m.
To make sure data was getting passed in, right under the function header within netfunc I put,
net inputs targets
The error points to the variable net. The size of net is 1x1. This is confusing because after the successful training run, I saved the network. I used save('trained_network.mat','net').
  1 Kommentar
keirth kilat
keirth kilat am 6 Mai 2018
hello do you have the solution on this? because i have the same problem and it is killing me.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 29 Apr. 2013
trained_net_vars = load('trained_net.mat');
handles.neural_net = trained_net_vars.net;
  3 Kommentare
Walter Roberson
Walter Roberson am 30 Apr. 2013
S = load(filename) loads the variables from a MAT-file into a structure array, or data from an ASCII file into a double-precision array.
You are working with a .mat file, so the output is a structure array. There will be one field in the structure array for each variable that was originally saved in the file. You saved (only) the variable 'net' in the file, so the structure array will have a field ".net" that contains the saved information. When you assign that structure array to handles.neural_net you are getting out the structure handles.neural_net.net containing the saved information rather than handles.neural_net itself containing the saved information.
Harold
Harold am 30 Apr. 2013
Ok, thank you.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by