Update app.py
Browse files
app.py
CHANGED
@@ -76,12 +76,12 @@ with gr.Blocks(title=title) as demo:
|
|
76 |
gr.Markdown(f"# {title}")
|
77 |
gr.Markdown(
|
78 |
"""
|
79 |
-
|
80 |
on a synthetic dataset. The transformations are then used to train a linear model on the \
|
81 |
transformed data. The plot shows the ROC curve of the different models trained on the \
|
82 |
transformed data. The plot is interactive and you can zoom in and out.
|
83 |
|
84 |
-
[
|
85 |
"""
|
86 |
)
|
87 |
|
|
|
76 |
gr.Markdown(f"# {title}")
|
77 |
gr.Markdown(
|
78 |
"""
|
79 |
+
This example shows how one can apply features transformations using ensembles of trees \
|
80 |
on a synthetic dataset. The transformations are then used to train a linear model on the \
|
81 |
transformed data. The plot shows the ROC curve of the different models trained on the \
|
82 |
transformed data. The plot is interactive and you can zoom in and out.
|
83 |
|
84 |
+
See original example [here](https://scikit-learn.org/stable/auto_examples/ensemble/plot_feature_transformation.html#sphx-glr-auto-examples-ensemble-plot-feature-transformation-py).
|
85 |
"""
|
86 |
)
|
87 |
|