How do validation check work in Neuralnet ?

81 ビュー (過去 30 日間)
R G
R G 2017 年 8 月 7 日
コメント済み: Moritz Hesse 2019 年 5 月 2 日
I'm learning about the neural network in MATLAB. when I learn about the neural net, I don't see anything about validation check (usually data is divided by 2 training and test testing) but in Matlab, they have a part for validation and have Validation check(in figure = 6).
so what I want to know is why we need validation check and how it work to check

採用された回答

Greg Heath
Greg Heath 2017 年 8 月 7 日
編集済み: Greg Heath 2018 年 7 月 11 日
design = train + validate
train : Weight Estimation
validate: Not directly involved in weight estimation. Protects ability to generalize to nontraining data. Stops training when the nontraining val subset error rate increases CONTINUOUSLY for more than 6 (default) epochs.
val subset error rate is therefore SLIGHTLY biased.
test subset error rate is COMPLETELY unbiased
default division ratio = 0.7/0.15/0.15
If val stopping occurs, take a look at the error rate curves and you will see why training was stopped.
OBVIOUSLY, the most unbiased approach for constant timestep timeseries prediction is to use DIVIDEBLOCK data division with the validation subset in the middle.
Hope this helps
Thank you for formally accepting my answer
Greg
  8 件のコメント
Greg Heath
Greg Heath 2018 年 7 月 11 日
編集済み: Greg Heath 2018 年 7 月 11 日
Thanks for the heads up! Changed to:
OBVIOUSLY, the most UNBIASED approach for constant timestep timeseries prediction is to use DIVIDEBLOCK data division with the validation subset in the middle.
GREG
Moritz Hesse
Moritz Hesse 2019 年 5 月 2 日

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by