Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Any idea why there is a duplication in the exported model generated code for the Classification Learner App R2015b?
조회 수: 1 (최근 30일)
이전 댓글 표시
I've just been looking at the new generated code for exported models in the Classification Learner App for R2015b.
There is a curious duplication of lines 44-50, repeated again starting on line 67 (or thereabouts depending on the model).
inputTable = trainingData;
% Extract predictors and response
% This code processes the data into the right shape for training the
% classifier.
predictorNames = {'SepalLength', 'SepalWidth', 'PetalLength', 'PetalWidth'};
predictors = inputTable(:, predictorNames);
response = inputTable.Species;
As far as I can see this is just a mistake.
Also, the last line is just taking up time unless you want to modify the code to use the results.
% Compute validation predictions and scores
[validationPredictions, validationScores] = kfoldPredict(partitionedModel);
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!