How can I efficiently save a linear model?
이전 댓글 표시
I have a large dataset (8000 x 287) that I want to use for linear regression. I am using the "fitlm()" function to train linear models with interactions. I need to train multiple models with datasets of the same size, and I want to save them for later usage. I saved the resulting linear model objects with save.
mdl = fitlm(...)
save('mdl.mat', 'mdl', '-v7.3')
Everything works but each model has a size of about 5.1 GB! Is there a more efficient way to save trained models? I only need the fitted polynomial for my predictions, so I don't understand why so much space is required to save a single model.
답변 (1개)
RAJA SEKHAR BATTU
2022년 10월 27일
0 개 추천
Hi Bastian,
I think you already aware of regression. But I give you an Idea. Regression is the way of using variables(input) to fit a polynomial.
You can optimize and reduce the dataset to less variable say may be 287 to 20. For this you can use PCA.
Check some details about optimal fetaures.
If you reduce the dataset, Automatically the model reduces its memory after fitiing.
To save models, If you want to save multiple models for future use. You can use cell array to save the models with a loop for change of parameters.
I hope It is clear
댓글 수: 4
Bastian
2022년 10월 27일
RAJA SEKHAR BATTU
2022년 10월 27일
편집: RAJA SEKHAR BATTU
2022년 10월 27일
Yes, I know a way.
mdl = fitlm(...);
% After this step you need to see what are present in the model
clear mdl.input; % example
% may be you can use this way because the fitted model usually saves as a structure
save('mdl.mat', 'mdl', '-v7.3');
I hope this will work in your case too
type mdl in command window to see the sub structure after fitiing
Thanks
Bastian
2022년 10월 27일
RAJA SEKHAR BATTU
2022년 10월 27일
@Bastian I think then only way to reduce the memory is to use Principal component analysis(PCA) or any feature reduction technique to reduce the features. The number of features to be reduced can be obtained by wrting a loop and checking the error(After PCA).
Please go through feature engineering for regression. You may get more information.
we cannot change the read only parameters because you can use that model 'mdl' for more multiple purposes.
Please find the more information about linear model regression in the following link
https://uk.mathworks.com/help/stats/fitlm.html
카테고리
도움말 센터 및 File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!