python sklearn non linear svm penalty
问题 I am using Python 2.7 with sklearn and using sklearn.svm.SVC with rbf kernel and suffer from over fitting. I tried using the C and Gamma as explained here and it did not do the trick If I understand correctly C and gamma are not l1 and l2 penalty, because C is the penalty for classifying wrong and gamma is the generalization parameter with respect to the data samples. i am looking for something that will penalize the model for complexity like l1 and l2. i want to use regularization and l1 or