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!