Borrar filtros
Borrar filtros

How do I move a SVM model from Matlab to VBA?

2 visualizaciones (últimos 30 días)
Atique Malik
Atique Malik el 6 de Mzo. de 2020
Comentada: Atique Malik el 4 de Abr. de 2020
I have a fitted model for SVM Gaussian regression. I have derived that or obtained that from the Stats and Machine Learning Toolbox. I now want to deply that in VBA on my machine, and demo the model to fellow engineers. I can't seem to locate teh form of teh equation and coefficients. I know what a Gaussian kernel is and all that, but where are the coefficients? Thanks for your help

Respuesta aceptada

Sourabh Kondapaka
Sourabh Kondapaka el 24 de Mzo. de 2020
Editada: Sourabh Kondapaka el 24 de Mzo. de 2020
To extract Weight_Vector from SVM Model :
Weight_vector = SVMModel.Alpha' * SVMModel.SupportVectors;
% To extract Bias Value from SVM Model
Bias = SVMModel.Bias;
% Now to write these into a file
writematrix(Weight_vector, weight_vector.csv);
writematrix(Bias, bias.csv);
Refer the following link for “writematrix()” function
  1 comentario
Atique Malik
Atique Malik el 4 de Abr. de 2020
Thank you. Is the exact form of the SVM equation defined in some readily available text? I am familiar with the math behind RBF and general NN and so I would like to follow this up.
Regards
Atique

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by