- You can easily train multiple regression models including SVMs with different options.
- You can optimize hyperparameters of the models. Choosing proper hyperparameters is highly important in Machine Learning research.
- You can easily select features. This is an important step to boost the model performance.
- You can export a model to the workspace to use the model with new data or generate MATLAB® code to learn about programmatic regression.
Low performance when training SVM model using "polynomial" kernel function
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
minhyuk jeung
el 14 de Jun. de 2024
Comentada: minhyuk jeung
el 17 de Jun. de 2024
Hello,
I am trying to compare the performance of SVM regression (or SVR) between "rbf", "polynomial", and "linear".
The training works well when using "rbf" and "linear" (e.g., 0.7~0.8 of R^2).
However, when "polynomial" function was applied as kernel function, the performance degraded to 0.001 of R^2 or negative.
I used the code:
Mdl = fitrsvm(X,Y,"Standardize",'true','KernelFunction','polynomial','OptimizeHyperparameters',{'BoxConstraint','Epsilon','KernelScale','PolynomialOrder'},'HyperparameterOptimizationOptions',struct('MaxObjectiveEvaluations',100))
Please help
Thank you.
0 comentarios
Respuesta aceptada
Angelo Yeo
el 15 de Jun. de 2024
As @Ganesh has answered, using "kernel" itself doesn't guarantee high performance. Improving model performance is a complicated topic and there are many approaches you can take. Here, I want to recommend you use Regression Learner app.
Más respuestas (1)
Ganesh
el 14 de Jun. de 2024
The accuracy you achieve with a Kernal Function would depend on the data distribution. Adding your data might help us give you a better idea over the reason.
You could try out the following example in MATLAB:
Initially, run the example and see the number of iterations, and you can try changing the "Kernal Function" to "polynomial" and running the model. You will find that the number of iterations it takes to converge is now 20 times!
When your data is two or three columns it's easier to visualize the same, but as your dimensions grow, it gets harder to plot and visualize your findings.
Ver también
Categorías
Más información sobre Linear and Nonlinear Regression en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!