Section 3: Tuning the Model in Python — Reference How to Implement Support Vector Machine? Section 2: Building the Model in Python, prior to continuing… [10] Define Grid Search Parameters param_grid_svm = {
'C': [0.1, 1, 10, 100],
'gamma': [1, 0.1, 0.01, 0.001],
'kernel': ['linear', 'rbf', 'poly', 'sigmoid'],
'class_weight': ['balanced']
}