I am working on neural networks using matlab 2011
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Interest Academics
am 30 Okt. 2014
Kommentiert: Interest Academics
am 31 Okt. 2014
The .mat file are the data i have trained. After training the data, the net file is created in the workspace.But, the values,connections,dimensions etc..are not updated in the 'net' file. How do i update the net file?..please help me. I am struggling a lot with this..many thanks.
0 Kommentare
Akzeptierte Antwort
Abhiram Bhanuprakash
am 30 Okt. 2014
Hi,
I was able to see the updated net. I think you feel that it is not updated since you do not see the fields like dimensions, connections, subobjects, etc. in the Variable editor.
However, if you type:
>> net
in the MATLAB Command Window, you would see all the properties. You can also fetch properties. For example, in your case, typing the following line in the Command Window:
>> net.LW
would give you a 2X2 cell with the cell at position {2,1} being updated with the layer weights.
Similarly, you can get the other weights by
>> net.IW
and
>> net.b
Hope this helps,
Cheers!
Abhiram
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Data Workflows finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!