Spaces:
Sleeping
Sleeping
Commit
·
761c88a
1
Parent(s):
8e12fbf
Update app.py
Browse filesMaking text simpler
app.py
CHANGED
@@ -49,9 +49,9 @@ with gr.Blocks() as demo:
|
|
49 |
gr.Markdown(f"# {title}")
|
50 |
gr.Markdown(
|
51 |
"""
|
52 |
-
This example
|
53 |
-
|
54 |
-
|
55 |
|
56 |
See original example [here](https://scikit-learn.org/stable/auto_examples/feature_selection/plot_feature_selection_pipeline.html#sphx-glr-auto-examples-feature-selection-plot-feature-selection-pipeline-py)
|
57 |
"""
|
|
|
49 |
gr.Markdown(f"# {title}")
|
50 |
gr.Markdown(
|
51 |
"""
|
52 |
+
### This example creates a pipeline where in the first step k features are selected with ANOVA and then we pass the selected features \
|
53 |
+
to a Linear SVM. This pipeline is then trained using a synthetic dataset and evaluated on a test holdout. \
|
54 |
+
A table displaying the classification report with the metrics and a char showing the index of the selected features are shown at the bottom.
|
55 |
|
56 |
See original example [here](https://scikit-learn.org/stable/auto_examples/feature_selection/plot_feature_selection_pipeline.html#sphx-glr-auto-examples-feature-selection-plot-feature-selection-pipeline-py)
|
57 |
"""
|