That example is perfect. Concise and powerful. Thank you Fred. Deron
On Wed, Dec 16, 2015 at 4:16 PM, Frederick R Reiss <[email protected]> wrote: > We can use the Poisson nonnegative matrix factorization example from last > week's webcast: > > i = 0 > while(i < max_iterations) { > H = (H * (t(W) %*% (V/(W%*%H + epsilon)))) / t(colSums(W)) > W = (W * ((V/(W%*%H) + epsilon) %*% t(H))) / t(rowSums(H)) > i = i + 1; > } > > > Sound ok to everyone? > > Fred > > > [image: Inactive hide details for Deron Eriksson ---12/16/2015 04:02:26 > PM---Hi, I think the main SystemML website at http://systemml.i]Deron > Eriksson ---12/16/2015 04:02:26 PM---Hi, I think the main SystemML website > at http://systemml.incubator.apache.org/ > > From: Deron Eriksson <[email protected]> > To: [email protected] > Date: 12/16/2015 04:02 PM > Subject: DML example on main SystemML website > ------------------------------ > > > > Hi, > > I think the main SystemML website at http://systemml.incubator.apache.org/ > needs to be updated so that the DML example is an actual algorithm or at > least a fragment of an algorithm. > > Does anyone have a recommendation for a short, concise example that shows > the power of DML? > > Thanks! > Deron > > >
