Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-11 Thread Pagliari, Roberto
know? Thank you, From: Manoj Kumar [mailto:manojkumarsivaraj...@gmail.com] Sent: Friday, August 08, 2014 11:12 AM To: scikit-learn-general@lists.sourceforge.net Subject: Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC Hi, I think you need to be looking at the recent master

Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-08 Thread Manoj Kumar
Hi, I think you need to be looking at the recent master of scikit-learn LinearSVC inherits from BaseLibLinear, the call to train_wrap is made in this line https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/svm/base.py#L719 . You can see the parameter (method) self._get_bias() , whi

Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-08 Thread Pagliari, Roberto
-learn-general@lists.sourceforge.net Subject: Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC Hi, It looks to me that only the bias parameter is passed to liblinear. It is set to self.intercept_scaling if fit_intercept is set to True and -1 otherwise. The rest (I think) are

Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-06 Thread Manoj Kumar
tions” field in liblinear python wrapper? > > > > Thank you! > > > > > > *From:* Pagliari, Roberto [mailto:rpagli...@appcomsci.com] > *Sent:* Tuesday, August 05, 2014 4:53 PM > *To:* scikit-learn-general@lists.sourceforge.net > *Subject:* [Scikit-learn-general] m

Re: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-06 Thread Pagliari, Roberto
lto:rpagli...@appcomsci.com] Sent: Tuesday, August 05, 2014 4:53 PM To: scikit-learn-general@lists.sourceforge.net Subject: [Scikit-learn-general] mapping liblinear wrapper with LinearSVC I went through the documentation of the python wrapper for liblinear. There are a few parameters such as -p

[Scikit-learn-general] mapping liblinear wrapper with LinearSVC

2014-08-05 Thread Pagliari, Roberto
I went through the documentation of the python wrapper for liblinear. There are a few parameters such as -p epsilon -e epsilon (with -s) -B bias Assuming I'm using the default value of 1e-4 in sklearn, which values are used for the parameters above. Does sklearn use default values, or different