Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
Osama Tabbakh
Osama Tabbakh 2019 年 3 月 19 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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?

回答 (0 件)

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by