Improve formatting
Browse files
app.py
CHANGED
@@ -75,8 +75,9 @@ with gr.Blocks(title=title) as demo:
|
|
75 |
gr.Markdown(f"## {title}")
|
76 |
gr.Markdown("""
|
77 |
This app demonstrates comparison of random forest with multi-output meta estimator for multi-output regression.
|
78 |
-
A random forest regressor is trained on randomly generated data which is used as baseline and compared with multi-output meta estimator trained on the same dataset
|
79 |
-
The predicted outputs from each model are visualized in the plot together with the actual data.
|
|
|
80 |
This app is developed based on [scikit-learn example](https://scikit-learn.org/stable/auto_examples/ensemble/plot_random_forest_regression_multioutput.html#sphx-glr-auto-examples-ensemble-plot-random-forest-regression-multioutput-py)
|
81 |
""")
|
82 |
|
|
|
75 |
gr.Markdown(f"## {title}")
|
76 |
gr.Markdown("""
|
77 |
This app demonstrates comparison of random forest with multi-output meta estimator for multi-output regression.
|
78 |
+
A random forest regressor is trained on randomly generated data which is used as baseline and compared with multi-output meta estimator trained on the same dataset.
|
79 |
+
The predicted outputs from each model are visualized in the plot together with the actual data.
|
80 |
+
The maximum depth and number of estimator of the random forest can be adjusted and the effect can be seen in the resulting plot.
|
81 |
This app is developed based on [scikit-learn example](https://scikit-learn.org/stable/auto_examples/ensemble/plot_random_forest_regression_multioutput.html#sphx-glr-auto-examples-ensemble-plot-random-forest-regression-multioutput-py)
|
82 |
""")
|
83 |
|