skglm icon indicating copy to clipboard operation
skglm copied to clipboard

Fast and modular sklearn replacement for generalized linear models

Results 61 skglm issues
Sort by recently updated
recently updated
newest added

To reproduce, run this in `test_estimators.py`: ```python estimator_name = "SVC" clf = clone(dict_estimators_ours[estimator_name]) clf.verbose = 2 clf.tol = 1e-6 # failure in float32 computation otherwise # if isinstance(clf, WeightedLasso): #...

This verifies that we do support [scikit-learn ``GridSearchCV``](https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html) and thereby adds an example to the documentation to illustrate that.

Currently `penalty.value` on takes `w` in argument https://github.com/scikit-learn-contrib/skglm/blob/99d0a0636b678876e26e93f28bf1d87b5c0d0b97/skglm/penalties/separable.py#L77 Computation could be made faster by using `penalty.value(w, ws)` (one cannot simply call `penalty.value(w[ws])` because of the weighted l1 norm

As AA has been refactored in a class, we should make sure to catch a sneaky bug that can make AA fail silently. I've already stumbled upon cases where the...

Probably calls for a non working set solver, or we can work something out with `is_penalized` (that could be called `yields_sparse_coefs` or something, ie if this is not true, we...

## Description of the feature Can you support strata in COX model? It is included in lifetimes and statsmodels. **Additional context** https://lifelines.readthedocs.io/en/latest/fitters/regression/CoxPHFitter.html https://www.statsmodels.org/stable/generated/statsmodels.duration.hazard_regression.PHReg.predict.html#statsmodels.duration.hazard_regression.PHReg.predict

## Description of the feature In many applications there is a need to have an asymmetric loss that weights negative and positive residuals differently. A good function for this is...

I am trying to create a custom datafit for Tweedie GLM. I followed the tutorial for Poisson but it errors out with a not so useful error statement. See below...

question

## Context of the PR Follow up of #137, Make jit-compilation of datafits and penalties, and thereby datafit initialization, implicit within solvers. ## Contributions of the PR - Initialize datafit...

Work In Progress

for the record, if one want s to compare against gsrpotim (by Eugene Ndiaye), here's a script showing that we get the same results: ```python from skglm.utils.data import make_correlated_data from...

good first issue