You can average the predictions of the SVR submodules.
Alternatively, you can try to install a linear regression model at the output of a kernel extension calculated using the Nystroem method .
Or you can try other non-linear regression models, such as an ensemble of randomized trees or gradient regression trees.
Change I forgot to say: the SVR core model itself does not scale, because its complexity is more quadratic, so there is no way to "speed it up".
Change 2 . In fact, frequent scaling of input variables to [0, 1] or [-1, 1] or dispersion of units using StandardScaler can significantly accelerate convergence.
It is also very unlikely that the default parameters will yield good results: you need to find the optimal value for gamma and possibly also epsilon on sub-samples of expandable sizes (to check the stability of the optimal parameters) before installing on large models.
source share