wider text
Browse files
app.py
CHANGED
@@ -49,12 +49,10 @@ def make_plot(n_samples, n_features, n_tasks, n_relevant_features, alpha, progre
|
|
49 |
return fig
|
50 |
|
51 |
|
52 |
-
model_card=f"""
|
53 |
## Description
|
54 |
-
Multi-task Lasso allows us to jointly fit multiple regression problems by enforcing the selected
|
55 |
-
features
|
56 |
-
is a time instant, and the relevant features, while being the same, vary in amplitude over time.
|
57 |
-
Multi-task lasso imposes that features that are selected at one time point are selected
|
58 |
for all time points. This makes feature selection more stable than by regular Lasso.
|
59 |
## Model
|
60 |
currentmodule: sklearn.linear_model
|
|
|
49 |
return fig
|
50 |
|
51 |
|
52 |
+
model_card = f"""
|
53 |
## Description
|
54 |
+
Multi-task Lasso allows us to jointly fit multiple regression problems by enforcing the selected features to be the same across tasks. This example simulates sequential measurement. Each task
|
55 |
+
is a time instant, and the relevant features, while being the same, vary in amplitude over time. Multi-task lasso imposes that features that are selected at one time point are selected
|
|
|
|
|
56 |
for all time points. This makes feature selection more stable than by regular Lasso.
|
57 |
## Model
|
58 |
currentmodule: sklearn.linear_model
|