Hello, is there a possibility in MATLAB to determine the predictor scores for additional samples when I already have a PLS regression model?
조회 수: 1 (최근 30일)
이전 댓글 표시
I built a PLS Regression model a while ago and now I have new samples for which I would like to determine the predictor scores because I Need These values in order to use them as Inputs for an artificial neural Network model.
댓글 수: 0
채택된 답변
Greg Heath
2016년 5월 20일
The basic tenet is
*"Can the additional data be assumed to be a random selection from the same probability
distribution as the training data?"*
Hope this helps
Greg
댓글 수: 0
추가 답변 (1개)
Editha Giese
2016년 5월 20일
댓글 수: 1
Greg Heath
2016년 5월 25일
편집: Greg Heath
2016년 5월 25일
Misuse of the word validate for NN purposes. A validation set is used during training to make sure the training results in a net that can generalize well to nontraining data.
The final evaluation is obtained with a nontraining test set.
data = design + test
design = training + validation
data = training + nontraining
nontraining = validation + test
Hope this helps.
Greg
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!