Getting problem in exporting model from Matlab Classification App

I made a model of Logistic Regression which has 4 inputs and 2 outputs '0' and '1'. I am having trouble in exporting the model to predict new data. my input is
T={67.753 67.395 67.122 67.938}
yfit = trainedModel.predictFcn(T)
and Output
exporting_model
T =
1×4 cell array
[67.7530] [67.3950] [67.1220] [67.9380]
Function 'subsindex' is not defined for values of class 'cell'.
Error in mlearnapp.internal.model.DatasetSpecification>@(t)t(:,predictorNames) (line 163)
extractPredictorsFromTableFcn = @(t) t(:,predictorNames);
Error in mlearnapp.internal.model.DatasetSpecification>@(x)extractPredictorsFromTableFcn(splitMatricesInTableFcn(x))
(line 164)
predictorExtractionFcn = @(x) extractPredictorsFromTableFcn(splitMatricesInTableFcn(x));
Error in mlearnapp.internal.model.DatasetSpecification>@(x)exportableModel.predictFcn(predictorExtractionFcn(x)) (line
167)
newExportableModel.predictFcn = @(x) exportableModel.predictFcn(predictorExtractionFcn(x));
Error in exporting_model (line 2)
yfit = trainedModel.predictFcn(T)
Please help me with it

回答 (2 件)

Walter Roberson
Walter Roberson 2017 年 6 月 1 日

0 投票

T = [67.753 67.395 67.122 67.938]

1 件のコメント

Prachi Suryawanshi
Prachi Suryawanshi 2017 年 6 月 2 日
No I tried it before. It is not working either. Can you give me some commands which I can use to predict new data with the model that I have exported.

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

naishi feng
naishi feng 2017 年 6 月 6 日

0 投票

have u solved ur problem?i meet the same problem too,can u help me?thank u!!!!

3 件のコメント

Prachi Suryawanshi
Prachi Suryawanshi 2017 年 6 月 6 日
Yes, I did it. The problem was with the input. I gave the input as an .xlsx file using readtable("abc.xlsx") command and yes, do mention the name of the variable on the top row. I hope it will work for you too.
Aziz Al-Abdali
Aziz Al-Abdali 2018 年 5 月 1 日
Sorry but what did mean by mentioning the name of the variable on the top row? can you elaborate that please? Thanks in advance
jiahui cai
jiahui cai 2020 年 6 月 12 日
Thank you very much!!

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

カテゴリ

質問済み:

2017 年 6 月 1 日

コメント済み:

2020 年 6 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by