DataSlingers / MoMA

MoMA: Modern Multivariate Analysis in R
https://DataSlingers.github.io/MoMA
GNU General Public License v2.0
21 stars 4 forks source link

Optimization on unordered fusion lasso #12

Open Banana1530 opened 6 years ago

Banana1530 commented 6 years ago

For special weight matrices, we can provide even more efficient algorithms than the general-purpose ADMM or AMA methods.

michaelweylandt commented 6 years ago

As discussed in the review of PR #11, our current UFL implementation is a bit wasteful memory wise and might be easier to speed up using "vector" style calculations rather than matrix multiplies.

Banana1530 commented 6 years ago

Just to be clear, the ADMM or AMA does not involve matrix multiplication of those triangular matrices. I would suggest we first transform the weight matrix provided by users to a vector on the R side.