在python中更改Super类中的参数

时间:2016-09-02 13:49:09

标签: python scikit-learn

假设我有以下继承自svm.LinearSVC的课程:

class specialSVM(svm.LinearSVC):

     def fit(self,x,y):
        x_new,y_new = a_function(x,y)
        super(specialSVM,self).fit(x_new,y_new)
        return self 

         .
         .

那么如何将默认penalty='l2'更改为l1或任何其他参数?

0 个答案:

没有答案