Support Vector Regression

Vivek Parashar
5 min readMar 17, 2023

Support Vector Regression (SVR) is a type of regression algorithm that uses Support Vector Machines (SVM) to perform regression analysis. In contrast to traditional regression algorithms, which aim to minimize the error between the predicted and actual values, SVR aims to fit a “tube” around the data such that the majority of the data points fall within the tube. The goal of SVR is to find a function that has a maximum margin from the tube.

Photo by Dan Roizer on Unsplash

In SVR, the input data is transformed into a higher-dimensional space, where a linear regression model is applied. The SVM then finds the best fit line for the transformed data, which corresponds to a non-linear fit in the original data space.

Implementing SVR in Python

To implement SVR in Python, we can use the SVR class from the sklearn.svm module in scikit-learn, which is a popular Python machine learning library. Here’s an example code to implement SVR in Python:

from sklearn.svm import SVR
import numpy as np

# Generate some sample data
X = np.sort(5 * np.random.rand(100, 1), axis=0)
y = np.sin(X).ravel()

# Create an SVR object and fit the model to the data
clf = SVR(kernel='rbf', C=1e3, gamma=0.1)
clf.fit(X, y)

# Make some predictions with the trained model
y_pred = clf.predict(X)

# Print the mean squared error of the predictions
mse = np.mean((y_pred - y) ** 2)
print(f"Mean squared error: {mse:.2f}")

In this example, we generate some sample data by randomly selecting 100 points along the sine curve. We then create an SVR object with an RBF kernel and some hyperparameters C and gamma. We fit the model to the sample data and make some predictions with the trained model. Finally, we calculate the mean squared error between the predicted values and the true values.

Note that the hyperparameters C and gamma control the regularization and non-linearity of the SVR model, respectively. These values can be tuned to optimize the performance of the model on a particular dataset. Additionally, provides many other options for configuring and fine-tuning the SVR model.

Implementing SVR in R

In R, we can implement SVR using the e1071 package, which provides the svm function for fitting support vector machines. Here’s an example code to implement SVR in R:

library(e1071)

# Generate some sample data
set.seed(1)
x <- sort(5 * runif(100))
y <- sin(x)

# Fit an SVR model to the data
model <- svm(x, y, kernel = "radial", gamma = 0.1, cost = 1000)

# Make some predictions with the trained model
y_pred <- predict(model, x)

# Print the mean squared error of the predictions
mse <- mean((y_pred - y) ^ 2)
cat(sprintf("Mean squared error: %.2f\n", mse))

In this example, we generate some sample data by randomly selecting 100 points along the sine curve. We then fit an SVR model to the data using the svm function from the e1071 package. We use a radial basis function (RBF) kernel and specify some hyperparameters gamma and cost. We make some predictions with the trained model and calculate the mean squared error between the predicted values and the true values.

Note that the hyperparameters gamma and cost control the non-linearity and regularization of the SVR model, respectively. These values can be tuned to optimize the performance of the model on a particular dataset. Additionally, the scikit-learn (Python) and e1071 (R) package provides many other options for configuring and fine-tuning the SVM model.

Math behind SVR

The math behind Support Vector Regression (SVR) is based on the same principles as Support Vector Machines (SVM), with some modifications to handle regression tasks. Here is a brief overview of the math behind SVR:

  • Given a set of training data, SVR first transforms the input data to a high-dimensional feature space using a kernel function. The kernel function computes the similarity between two data points in the original space and maps them to a higher-dimensional space where they can be more easily separated by a linear hyperplane.
  • The goal of SVR is to find a hyperplane in the feature space that maximally separates the training data while maintaining a margin around it. This is done by solving an optimization problem that involves minimizing the distance between the hyperplane and the training data while maximizing the margin.
  • In SVR, the margin is defined as a tube around the hyperplane, rather than a margin between two parallel hyperplanes as in SVM. The width of the tube is controlled by two parameters, ε (epsilon) and C. ε defines the width of the tube and C controls the trade-off between the size of the margin and the amount of training data that is allowed to violate it.
  • The optimization problem in SVR is typically formulated as a quadratic programming problem, which can be solved using numerical optimization techniques.
  • Once the hyperplane is found, SVR uses it to make predictions for new data points by computing their distance to the hyperplane in the feature space. The distance is transformed back to the original space using the kernel function to obtain the predicted output.

Overall, the math behind SVR involves finding a hyperplane that maximizes the margin around the training data while maintaining a tube around the hyperplane. This is done by transforming the data to a high-dimensional feature space, solving an optimization problem to find the hyperplane, and using the hyperplane to make predictions for new data points.

Advantages of SVR

Support Vector Regression (SVR) has several advantages over other regression models:

  • Non-linearity: SVR can model non-linear relationships between the input and output variables, while linear regression models can only model linear relationships.
  • Robustness to outliers: SVR is less sensitive to outliers in the input data compared to other regression models. This is because the optimization process in SVR only considers data points near the decision boundary, rather than all data points.
  • Flexibility: SVR allows for the use of different kernel functions, which can be used to model different types of non-linear relationships between the input and output variables.
  • Regularization: SVR incorporates a regularization term in the objective function, which helps to prevent overfitting and improve the generalization performance of the model.
  • Efficient memory usage: SVR uses only a subset of the training data (support vectors) to build the decision boundary. This results in a more efficient memory usage, which is particularly useful when dealing with large datasets.

Overall, SVR is a powerful and flexible regression model that can handle a wide range of regression tasks. Its ability to model non-linear relationships, its robustness to outliers, and its efficient memory usage make it a popular choice for many machine learning applications.

Comments welcome!

--

--

Vivek Parashar

Experienced in synthesizing data to identify trends, deliver insights and recommendations. Focused on customer lifecycle, cross-sell, and employee performance.