scikit-learn-contrib / py-earth

A Python implementation of Jerome Friedman's Multivariate Adaptive Regression Splines
http://contrib.scikit-learn.org/py-earth/
BSD 3-Clause "New" or "Revised" License
455 stars 122 forks source link

Supporting fast MARS. #82

Closed mehdidc closed 8 years ago

mehdidc commented 8 years ago

Issue #1 It is a way to approximate the forward pass to gain speed. This adds three new parameters to Earth, which will control the behavior of fast MARS. This commit contains also a benchmark program which compares the normal behavior to the fast MARS.

jcrudy commented 8 years ago

@mehdidc Thanks for this! I really appreciate all the work. I've been very busy, but I should be able to review this later this week. This goes for your other PRs as well.

jcrudy commented 8 years ago

Very nice. Merged it in.