Kizspy | Question: 47
(Choose 1 answer)
You are performing grid search to find the best C value for an SVC classifier. You specify the parameter grid
as follows: param_grid = {'C': [0.01, 0.1, 1, 10, 100]}. After performing grid search, you find that the best C
value is 0.01. What does this suggest about the dataset and the model's complexity?
A. Because the dataset is highly complex, a lower C value is preferred.
B. Because the dataset is simple, a lower C value is preferred.
C. Because the dataset is simple, a higher C value is preferred.
D. The choice of C value does not affect the model's complexity.