You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
``skglm`` is a Python package that offers **fast estimators** for sparse Generalized Linear Models (GLMs) that are **100% compatible with ``scikit-learn``**. It is **highly flexible** and supports a wide range of GLMs. You get to choose from ``skglm``'s already-made estimators or **customize your own** by combining the available datafits and penalty.
16
+
``skglm`` is a Python package that offers **fast estimators** for sparse Generalized Linear Models (GLMs) that are **100% compatible with ``scikit-learn``**. It is **highly flexible** and supports a wide range of GLMs.
17
+
You get to choose from ``skglm``'s already-made estimators or **customize your own** by combining the available datafits and penalties.
18
+
19
+
Excited to have a tour on ``skglm``[documentation](https://contrib.scikit-learn.org/skglm/)?
17
20
18
-
Excited to have a tour on ``skglm``[documentation](https://contrib.scikit-learn.org/skglm/):memo:?
19
21
20
22
# Why ``skglm``?
21
23
@@ -25,10 +27,10 @@ There are several reasons to opt for ``skglm`` among which:
25
27
26
28
|||
27
29
| ----- | -------------- |
28
-
|**Speed**:zap:| Fast solvers able to tackle large datasets, either dense or sparse, with millions of features **up to 100 times faster** than ``scikit-learn``|
29
-
|**Modularity**:hammer_and_pick:| User-friendly API than enables **composing custom estimators** with any combination of its existing datafits and penalties |
30
-
| **Extensibility**:arrow_up_down:| Flexible design that makes it **simple and easy to implement new datafits and penalties**, a matter of few lines of code
31
-
| **Compatibility**:electric_plug:| Estimators **fully compatible with the ``scikit-learn`` API** and drop-in replacements of its GLM estimators
30
+
|**Speed**| Fast solvers able to tackle large datasets, either dense or sparse, with millions of features **up to 100 times faster** than ``scikit-learn``|
31
+
|**Modularity**| User-friendly API that enables **composing custom estimators** with any combination of its existing datafits and penalties |
32
+
| **Extensibility** | Flexible design that makes it **simple and easy to implement new datafits and penalties**, a matter of few lines of code
33
+
| **Compatibility** | Estimators **fully compatible with the ``scikit-learn`` API** and drop-in replacements of its GLM estimators
32
34
|||
33
35
34
36
@@ -70,7 +72,7 @@ print(estimator.score(X, y))
70
72
```
71
73
You can refer to the documentation to explore the list of ``skglm``'s already-made estimators.
72
74
73
-
Didn't find one that suits you:monocle_face:, you can still compose your own.
75
+
Didn't find one that suits you? you can still compose your own.
74
76
Here is a code snippet that fits a MCP-regularized problem with Huber loss.
0 commit comments