Add scikit-learn example link
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ def train_estimators(max_depth,n_estimators):
|
|
34 |
title = "Decision Tree Regression with AdaBoost"
|
35 |
with gr.Blocks(title=title) as demo:
|
36 |
gr.Markdown(f"## {title}")
|
37 |
-
gr.Markdown("This app demonstrates
|
38 |
|
39 |
max_depth = gr.Slider(minimum=1, maximum=50, step=1, label = "Maximum Depth")
|
40 |
n_estimators = gr.Slider(minimum=1, maximum=300, step=1, label = "Number of Estimators")
|
|
|
34 |
title = "Decision Tree Regression with AdaBoost"
|
35 |
with gr.Blocks(title=title) as demo:
|
36 |
gr.Markdown(f"## {title}")
|
37 |
+
gr.Markdown("This app demonstrates boosting of decision tree regressor using Adaboost. This app is developed based on [scikit-learn example](https://scikit-learn.org/stable/auto_examples/ensemble/plot_adaboost_regression.html#sphx-glr-auto-examples-ensemble-plot-adaboost-regression-py)")
|
38 |
|
39 |
max_depth = gr.Slider(minimum=1, maximum=50, step=1, label = "Maximum Depth")
|
40 |
n_estimators = gr.Slider(minimum=1, maximum=300, step=1, label = "Number of Estimators")
|