Mohammad Haizad commited on
Commit
66b5b2f
·
1 Parent(s): 564fdde

Update title and desc

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -107,10 +107,10 @@ def stacked_model(model1,model2,model3):
107
  fig.subplots_adjust(top=0.9)
108
  return fig
109
 
110
- title = "Multi-class AdaBoosted Decision Trees"
111
  with gr.Blocks(title=title) as demo:
112
  gr.Markdown(f"## {title}")
113
- gr.Markdown("This app demonstrates the Multi-class AdaBoosted Decision Trees")
114
 
115
  model1 = gr.Textbox(label="Repo id of first model")
116
  model2 = gr.Textbox(label="Repo id of second model")
 
107
  fig.subplots_adjust(top=0.9)
108
  return fig
109
 
110
+ title = "Combine predictors using stacking"
111
  with gr.Blocks(title=title) as demo:
112
  gr.Markdown(f"## {title}")
113
+ gr.Markdown("This app demonstrates combining 3 predictors trained on Ames housing dataset from OPenML using stacking.")
114
 
115
  model1 = gr.Textbox(label="Repo id of first model")
116
  model2 = gr.Textbox(label="Repo id of second model")