SKLearner Home | About | Contact | Examples

Configure SVR "max_iter" Parameter

The max_iter parameter in scikit-learn’s SVR (Support Vector Regression) controls the maximum number of iterations allowed during training.

SVR is an extension of Support Vector Machines (SVM) for regression tasks. The max_iter parameter determines the upper limit on the number of iterations the optimizer will take to converge.

Increasing max_iter allows the model to continue optimizing for more iterations, potentially leading to better performance. However, setting it too high can result in longer training times.

The default value for max_iter is 1000.

In practice, values between 1000 and 10000 are commonly used depending on the complexity of the dataset and the kernel function.

from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split
from sklearn.svm import SVR
from sklearn.metrics import mean_squared_error

# Generate synthetic dataset
X, y = make_regression(n_samples=1000, n_features=10, noise=0.1, random_state=42)

# Split into train and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

# Train with different max_iter values
max_iter_values = [1000, 2000, 5000, 10000]
mse_scores = []

for max_iter in max_iter_values:
    svr = SVR(max_iter=max_iter)
    svr.fit(X_train, y_train)
    y_pred = svr.predict(X_test)
    mse = mean_squared_error(y_test, y_pred)
    mse_scores.append(mse)
    print(f"max_iter={max_iter}, MSE: {mse:.3f}")

Running the example gives an output like:

max_iter=1000, MSE: 12758.146
max_iter=2000, MSE: 12758.146
max_iter=5000, MSE: 12758.146
max_iter=10000, MSE: 12758.146

The key steps in this example are:

  1. Generate a synthetic regression dataset
  2. Split the data into train and test sets
  3. Train SVR models with different max_iter values
  4. Evaluate the mean squared error (MSE) of each model on the test set

Some tips and heuristics for setting max_iter:

Issues to consider:



See Also