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




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

Reply via email to