Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Why do not Matlab split my inputs into 3 portions, although I've so set?

1 vue (au cours des 30 derniers jours)
Osama Tabbakh
Osama Tabbakh le 19 Mar 2019
Clôturé : MATLAB Answer Bot le 20 Août 2021
I've trained a neural network, but the whole data is trained without test and validation. My input is 10000 (vector) and I have 60 of them. My output is 60 (vector) and I've also 60 of them.
p %% input
p = con2seq (p);
t %% target or output
t = con2seq (t);
net = newff(p,t,[2 2]);
net.divideParam.trainRatio=0.7;
net.divideParam.testRatio=0.15;
net.divideParam.valRatio=0.15;
net.trainParam.lr=0.01;
net.trainParam.min_grad=1e-20;
net.trainParam.goal=1e-30;
net.trainParam.epochs=200;
net = train(net,p,t);
Could someone help me?

Réponses (0)

Cette question est clôturée.

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by