fix typo
Browse files
app.py
CHANGED
@@ -110,7 +110,7 @@ def stacked_model(model1,model2,model3):
|
|
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. This app is developed based on [scikit-example](https://scikit-learn.org/stable/auto_examples/ensemble/plot_stack_predictors.html#sphx-glr-auto-examples-ensemble-plot-stack-predictors-py)")
|
114 |
|
115 |
model1 = gr.Textbox(label="Repo id of first model")
|
116 |
model2 = gr.Textbox(label="Repo id of second model")
|
|
|
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. This app is developed based on [scikit-learn example](https://scikit-learn.org/stable/auto_examples/ensemble/plot_stack_predictors.html#sphx-glr-auto-examples-ensemble-plot-stack-predictors-py)")
|
114 |
|
115 |
model1 = gr.Textbox(label="Repo id of first model")
|
116 |
model2 = gr.Textbox(label="Repo id of second model")
|