Mohammad Haizad
commited on
Commit
·
66b5b2f
1
Parent(s):
564fdde
Update title and desc
Browse files
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 = "
|
111 |
with gr.Blocks(title=title) as demo:
|
112 |
gr.Markdown(f"## {title}")
|
113 |
-
gr.Markdown("This app demonstrates
|
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")
|