フィルターのクリア

Is it necessary to test a neural networks with data set unseen by ANN ??

1 回表示 (過去 30 日間)
omar belhaj
omar belhaj 2015 年 2 月 26 日
コメント済み: omar belhaj 2015 年 2 月 28 日
Purpose: A neural networks, when properly trianed must have ability to generalize and not behave just like a memory.
So, for me i used MLP( 7 inputs,1 ouputs, 1 hidden layer) type's of ANN with 13 years data set, i divided these data as following :
- 10 years data set to train my ANN
- 3 years unseen by ANN to test my model
My question is,can i delete this command 'net.divideparam.testRatio' since i used data unseen by ANN ????
net.divideParam.trainRatio = 75/100;
net.divideParam.valRatio = 15/100;
|net.divideParam.testRatio = 10/100; (I think this command is not necessary!!! can i delete it ??)

採用された回答

Greg Heath
Greg Heath 2015 年 2 月 27 日
Just put all of the data into the net.
Then choose the datadivision mode and indexing that suits the problem.
Nothing more is needed.
  1 件のコメント
omar belhaj
omar belhaj 2015 年 2 月 28 日
So, that I "ve understood from your answer for exemple for this case data set 13 years
net.divideParam.trainRatio = 75/100;( about 10 years are used for training)
net.divideParam.valRatio = 15/100; (about 2 years are used for validaition to avoid "overfitting")
|net.divideParam.testRatio = 10/100 ( about 1 year used to test our model, we can consired that unseen by NN !!)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by