Re: Using GLM-predict

2015-12-10 Thread Sourav Mazumder
BM Almaden Research Center > E-mail: npansar At us.ibm.com > http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar > > [image: Inactive hide details for Sourav Mazumder ---12/10/2015 08:00:51 > AM---Hi Niketan, Thanks for the exaplana

Re: Using GLM-predict

2015-12-10 Thread Niketan Pansare
on.ibm.com/researcher/view.php?person=us-npansar From: Sourav Mazumder To: dev@systemml.incubator.apache.org Date: 12/10/2015 08:00 AM Subject:Re: Using GLM-predict Hi Niketan, Thanks for the exaplanation. While trying out the new build from github I'm facing issue. I downloa

Re: Using GLM-predict

2015-12-10 Thread Sourav Mazumder
p?person=us-npansar > > [image: Inactive hide details for Sourav Mazumder ---12/09/2015 06:20:24 > PM---Hi Niketan, Thanks again for such a detailed explanation.]Sourav > Mazumder ---12/09/2015 06:20:24 PM---Hi Niketan, Thanks again for such a > detailed explanation. I see your last poi

Re: Using GLM-predict

2015-12-09 Thread Niketan Pansare
pecify this ordering. Thanks, Niketan Pansare IBM Almaden Research Center E-mail: npansar At us.ibm.com http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar From: Sourav Mazumder To: dev@systemml.incubator.apache.org Date: 12/09/2015 06:20 PM Subject:Re: Using GLM-predict H

Re: Using GLM-predict

2015-12-09 Thread Sourav Mazumder
> This also shows the usefulness of "Declarative Machine Learning" :) > > Thanks, > > Niketan Pansare > IBM Almaden Research Center > E-mail: npansar At us.ibm.com > http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar > > [image: Inactiv

Re: Using GLM-predict

2015-12-09 Thread Niketan Pansare
hanks, Niketan Pansare IBM Almaden Research Center E-mail: npansar At us.ibm.com http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar From: Sourav Mazumder To: dev@systemml.incubator.apache.org Date: 12/09/2015 01:15 PM Subject:Re: Using GLM-predict Hi Niketan,

Re: Using GLM-predict

2015-12-09 Thread Sourav Mazumder
use of]Sourav > Mazumder ---12/09/2015 11:15:19 AM---Hi Niketan, The code you provided > works fine. The use of getMatrixCharacteristics > > From: Sourav Mazumder > To: dev@systemml.incubator.apache.org > Date: 12/09/2015 11:15 AM > Subject: Re: Using GLM-predict > -

Re: Using GLM-predict

2015-12-09 Thread Niketan Pansare
bm.com http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar From: Sourav Mazumder To: dev@systemml.incubator.apache.org Date: 12/09/2015 11:15 AM Subject:Re: Using GLM-predict Hi Niketan, The code you provided works fine. The use of getMatrixCharacteristics solves

Re: Using GLM-predict

2015-12-09 Thread Sourav Mazumder
tions > > < > http://apache.github.io/incubator-systemml/dml-language-reference.html#matrix-andor-scalar-comparison-built-in-functions > > > > ) > > b. ppred > > > > >> Can you give me some idea how from here I can calculate the predicted > >

Re: Using GLM-predict

2015-12-09 Thread Niketan Pansare
h key for the feature vector and the predicted value remain same ? If not how to achieve the same ? In above example 'pred' is a DataFrame with column 'ID' which provides the row ID. Thanks, Niketan Pansare IBM Almaden Research Center E-mail: npansar At us.ibm.com http://resea

Re: Using GLM-predict

2015-12-08 Thread Sourav Mazumder
[image: Inactive hide details for Shirish Tatikonda ---12/08/2015 12:49:47 > PM---Hi Sourav, Yes, GLM-predict.dml gives out only the prob]Shirish > Tatikonda ---12/08/2015 12:49:47 PM---Hi Sourav, Yes, GLM-predict.dml gives > out only the probabilities. You can put a > > From: Shirish Tati

Re: Using GLM-predict

2015-12-08 Thread Niketan Pansare
aden Research Center E-mail: npansar At us.ibm.com http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar From: Shirish Tatikonda To: dev@systemml.incubator.apache.org Date: 12/08/2015 12:49 PM Subject: Re: Using GLM-predict Hi Sourav, Yes, GLM-predict.dml gives out

Re: Using GLM-predict

2015-12-08 Thread Sourav Mazumder
Hi Shirish, Thanks for your clarification. Not sure how exactly I can modify the GLM-predict.dml to get some prediction to start with. Ideally I would like the probability threshold to be parameterized. If I check the script at line 135-136 I can see the code which returns means and vars - [mean

Re: Using GLM-predict

2015-12-08 Thread Shirish Tatikonda
Hi Sourav, Yes, GLM-predict.dml gives out only the probabilities. You can put a threshold on the resulting probabilities to get the actual class labels -- for example, prob > 0.5 is positive and <=0.5 as negative. The exact value of threshold typically depends on the data and the application. Dif