yixuan / ADMM

Solving Statistical Optimization Problems Using the ADMM Algorithm
75 stars 26 forks source link

Adding interfaces for platforms other than R #6

Closed Red-Portal closed 7 years ago

Red-Portal commented 7 years ago

Hi, I would like to develop additional interfaces for your library. I'm not experienced in R packages so can you give me some directions?

Where should I look first in order to develop interfaces.

yixuan commented 7 years ago

This package is mostly for experiment purpose and I guess for specific tasks it's more straightforward to implement the algorithm from scratch. However, the core part of this package was written in C++ with the Eigen library, so feel free to use the code inside the src directory if it helps.

yixuan commented 7 years ago

There was another experimental package I wrote for Spark: https://github.com/yixuan/ADMM-Spark. Don't take it too seriously. It was written long time ago based on an old version of Spark. But it may provide some insights for your own project.

Red-Portal commented 7 years ago

Thanks I'll look into it