Re: Classification model method not found

2015-12-22 Thread Nikhil Joshi
Hi Ted, Thanks. That fixed the issue :). Nikhil On Tue, Dec 22, 2015 at 1:14 PM, Ted Yu wrote: > Looks like you should define ctor for ExtendedLR which accepts String > (the uid). > > Cheers > > On Tue, Dec 22, 2015 at 1:04 PM, njoshi wrote: > >> Hi, >> >> I have a custom extended LogisticReg

Re: Classification model method not found

2015-12-22 Thread Ted Yu
Looks like you should define ctor for ExtendedLR which accepts String (the uid). Cheers On Tue, Dec 22, 2015 at 1:04 PM, njoshi wrote: > Hi, > > I have a custom extended LogisticRegression model which I want to test > against a parameter grid search. I am running as follows: > > / >val exLR

Classification model method not found

2015-12-22 Thread njoshi
Hi, I have a custom extended LogisticRegression model which I want to test against a parameter grid search. I am running as follows: / val exLR = new ExtendedLR() .setMaxIter(100) .setFitIntercept(true) /* * Cross Validator parameter grid */ val paramGrid = new P