Why do I get "cannot load an object of class 'compactcl?assificati?onECOC'" after compiling a standalone application of a machine learning model? I have a trained machine learning model saved as a MAT file that is loaded in my App Designer application. When I compile the app into a standalone application with MATLAB Compiler, I get the following error when running it: cannot load an object of class 'compactclassificationECOC'
Prashant Kumar answered .
2025-11-20
% App designer method
function myAppCallback(app, event)
%#function classreg.learning.classif.CompactClassificationECOC
[ additional code ]
The "function pragma" was added based on the "ClassificationSVM" values in the trained model struct:
trainedModel = struct with fields: predictFcn: @(x)exportableModel.predictFcn(predictorExtractionFcn(x)) ClassificationSVM: [1×1 classreg.learning.classif.CompactClassificationECOC] About: 'This struct is a trained model exported from Classification Learner R2017b.' HowToPredict: 'To make predictions on a new predictor column matrix, X, use: ...
Multiple functions can be added to the pragma with spaces:
%#function classreg.learning.classif.CompactClassificationECOC classreg.learning.regr.RegressionModel