getting a problem running classification , the performance starts with performance goal met, the classification doesn't run

1 view (last 30 days)
Hello I am trying to do a binary classification but i've got some problems the performance started with "performance goal met" it doesn't run .
here my script and the problem: Thanks
A=MLPtrain; %569*30
B=Labeltrain;%569*1
x = transpose(A);
y = transpose(B);
net = newff(minmax(x),[30,1],{'logsig','purelin','trainlm'});
net.trainparam.epochs=8000;
net.trainparam.lr=0.01;
net.trainparam.goal=1e-25;
net=train(net,x,y);

Answers (0)

Community Treasure Hunt

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

Start Hunting!