Re: [ML] Training with bias

2016-04-12 Thread Daniel Siegmann
Yes, that's what I was looking for. Thanks. On Tue, Apr 12, 2016 at 9:28 AM, Nick Pentreath wrote: > Are you referring to fitting the intercept term? You can use > lr.setFitIntercept (though it is true by default): > > scala> lr.explainParam(lr.fitIntercept) > res27: String = fitIntercept: wheth

Re: [ML] Training with bias

2016-04-12 Thread Nick Pentreath
Are you referring to fitting the intercept term? You can use lr.setFitIntercept (though it is true by default): scala> lr.explainParam(lr.fitIntercept) res27: String = fitIntercept: whether to fit an intercept term (default: true) On Mon, 11 Apr 2016 at 21:59 Daniel Siegmann wrote: > I'm trying