フィルターのクリア

Info

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

hi every one. I want to make a validation for prediction task (ANN). I don't know how to plot the validation for three parameters that I predict by ANN. the image is available. is there anyone who can help me?

1 回表示 (過去 30 日間)
ramin asadi
ramin asadi 2016 年 11 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
hi every one. I want to make a validation for prediction task (ANN). I don't know how to plot the validation for three parameters that I predict by ANN. the image is available here. is there anyone who can help me?
  1 件のコメント
Greg Heath
Greg Heath 2016 年 11 月 26 日
YOUR USE OF THE WORD VALIDATION IS NOT STANDARD
In the field of neural networks the original data is traditionally divided
into three subsets: training, validation and testing
data = design + test
design = training + validation
data = training + validation + test
TRAINING SUBSET:
Explicitly used to change weights (includes bias weights) with most other
training parameters held constant. The resulting error estimate can be
highly biased if the number of training equations is not significantly
higher than the number of weights to be estimated.
VALIDATION SUBSET:
a. Explicitly used to stop training if the val subset error rate
continually increases for a fixed number (MATLAB default
= 6) of epochs. This event is called "VALIDATION STOPPING".
b. Sometimes it is useful to compare valstopped designs those
that are stopped otherwise.
c. Used to rank multiple trained nets. Since the val subset
is only used indirectly during weight estimation, the val error rate
estimate is considered to be "only weakly biased".
test subset:
Nondesign and Nontraining subset used to obtain relatively unbiased
error estimations.
It is not clear how you are using the term validation.
Please elucidate.
Greg

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by