Re: StreamingLogisticRegressionWithSGD : Multiclass Classification : Options

2018-01-19 Thread Sundeep Kumar Mehta
Thanks a lot Patrick, this was helpful... Regards Sundeep On Sat, Jan 20, 2018 at 1:35 AM, Patrick McCarthy wrote: > Rather than use a fancy purpose-built class, I was thinking that you could > rather generate a series of label vectors, vector A is 1 when class a is >

Re: StreamingLogisticRegressionWithSGD : Multiclass Classification : Options

2018-01-19 Thread Patrick McCarthy
Rather than use a fancy purpose-built class, I was thinking that you could rather generate a series of label vectors, vector A is 1 when class a is positive and 0 when any other is, vector B is 1 when class b is positive and 0 when any other is, etc. I don't know anything about streaming in

Re: StreamingLogisticRegressionWithSGD : Multiclass Classification : Options

2018-01-18 Thread Patrick McCarthy
As a hack, you could perform a number of 1 vs. all classifiers and then post-hoc select among the highest prediction probability to assign class. On Thu, Jan 18, 2018 at 12:17 AM, Sundeep Kumar Mehta wrote: > Hi, > > I was looking for Logistic Regression with Multi Class

StreamingLogisticRegressionWithSGD : Multiclass Classification : Options

2018-01-17 Thread Sundeep Kumar Mehta
Hi, I was looking for Logistic Regression with Multi Class classifier on Streaming data do we have any alternative options or library/github prj. As StreamingLogisticRegressionWithSGD only supports binary classification Regards Sundeep