Dea22 commited on
Commit
b289808
·
1 Parent(s): 53e7d34

text update

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -51,9 +51,9 @@ def make_plot(n_samples, n_features, n_tasks, n_relevant_features, alpha, progre
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
59
  class:`Lasso` and class: `MultiTaskLasso` are used in this example.
 
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.
55
+ Each task 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
56
+ are selected for all time points. This makes feature selection more stable than by regular Lasso.
57
  ## Model
58
  currentmodule: sklearn.linear_model
59
  class:`Lasso` and class: `MultiTaskLasso` are used in this example.