Least Squares Support Vector Regression with optimized hyperparameters
This is a simple implementation of the hyperparameter optimization approach proposed in [1].
Installation
pipinstalloptimized-lssvr
Example
importnumpyasnpfromoptimized_lssvrimportOptimizedLSSVR# generate example datan,nft=500,5x=np.random.rand(n,nft)y=x[:,0]-5*x[:,1]# create and fit modelmodel=OptimizedLSSVR(verbose=1)model.fit(x,y)print('final relative MSE:',model.relative_mse_)print('optimized parameters:',model.params_)
More examples can be found in the examples directory.
References
[1]
Fischer, A., Langensiepen, G., Luig, K., Strasdat, N., & Thies, T. (2015). Efficient optimization of hyper-parameters for least squares support vector regression. Optimization Methods and Software, 30(6), 1095-1108.