merve HF Staff commited on
Commit
8294611
·
1 Parent(s): 7dae04b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,12 +71,12 @@ def app_fn(n: int) -> go.Figure:
71
 
72
  return fig
73
 
74
- title="Individual and Voting (🗳️) Regression Predictions"
75
  with gr.Blocks() as demo:
76
  gr.Markdown(f"# {title}")
77
  gr.Markdown(
78
  """
79
- ## A voting regressor is an ensemble meta-estimator that fits several base regressors, each on the whole dataset. \
80
  Then it averages the individual predictions to form a final prediction. This example will use three different regressors to \
81
  predict the data: GradientBoostingRegressor, RandomForestRegressor, and LinearRegression. Then the 3 regressors will be used for the VotingRegressor. \
82
  The dataset used consists of 10 features collected from a cohort of diabetes patients. The target is a quantitative measure of disease progression one year after baseline.
 
71
 
72
  return fig
73
 
74
+ title="Individual and Voting Regression Predictions 🗳️"
75
  with gr.Blocks() as demo:
76
  gr.Markdown(f"# {title}")
77
  gr.Markdown(
78
  """
79
+ A voting regressor is an ensemble meta-estimator that fits several base regressors, each on the whole dataset. \
80
  Then it averages the individual predictions to form a final prediction. This example will use three different regressors to \
81
  predict the data: GradientBoostingRegressor, RandomForestRegressor, and LinearRegression. Then the 3 regressors will be used for the VotingRegressor. \
82
  The dataset used consists of 10 features collected from a cohort of diabetes patients. The target is a quantitative measure of disease progression one year after baseline.