debug Mode when train
Show older comments
Can you help me????
I have code like this
[imagefile] = imread([direktori,namafile],'bmp');
filegambar = im2bw(imagefile,0.5);
imagefile = bwmorph(~filegambar,'thin','Inf');
P= imagefile(:,1:200)';
T= imagefile(:,1:200)';
[pn,meanp,stdp,tn,meant,stdt]=prestd(P,T)
net=newff(minmax(pn),[4,3,1], {'tansig' 'logsig' 'purelin'},'traingdm');
net.IW{1,1}
net.b{1}
net.LW{2,1}
net.b{2}
net.LW{3,2}
net.b{3}
net.trainParam.lr = 0.1
net.trainParam.goal = 0.00001
net.trainParam.epochs = 500
net.trainParam.show = 500
net=train(net,P)
but when i write this code "net=train(net,P)" , the result is nothing, even out of debug mode,
Can show where the error??
and Can you give me a solution for??
I really need your help
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!