glmnet-python icon indicating copy to clipboard operation
glmnet-python copied to clipboard

Wrappers of Jerome Friedman's coordinate-descent Fortran implementation of lasso/elastic net regression from the R "glmnet" package.

Results 8 glmnet-python issues
Sort by recently updated
recently updated
newest added

Hello, I'm new to github, so I hope I follow the correct channel. Attached a patch that solves a bug in the ElasticNet.py file. In particular, the glmnets returns compressed...

I've been working on the python glmnet for a couple weeks now. Here's what i've accomplished: - Updated the fortran code to the most current from CRAN. - Added support...

The installation instructions were missing the f2py part; I've added a Makefile. Nice library! Cheers, TW

Where can I find documentation on how to use this? For example, what's the `balance` parameter to the elastic net?

The Configuration(package_name).to_dict() result already includes the packages=[package_name] entry. By including it in setup() and in the config_dict mapping, setup() is supplied that keyword twice. You could remove it from the...

I build the package with the following command, but when I import the module I get this error: ``` python setup.py config_fc --fcompiler=gnu95 --f77flags='-fdefault-real-8' --f90flags='-fdefault-real-8' build ``` File "/Users/rose/221/tagger/tagger/glmnet/glmnet.py", line...

Hi! I was very interested in using these Friedman's algorithms, and was very glad of finding this wrappers and Python is my preferred language. I found that there are new...

When the number of features is much bigger than the number of samples I get a segmentation fault. The following script can reproduce the problem: import numpy as np from...