EduardoPacheco commited on
Commit
761c88a
1 Parent(s): 8e12fbf

Update app.py

Browse files

Making text simpler

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -49,9 +49,9 @@ with gr.Blocks() as demo:
49
  gr.Markdown(f"# {title}")
50
  gr.Markdown(
51
  """
52
- This example shows how a feature selection can be easily integrated within a machine learning pipeline \
53
- using a synthetic dataset. The number of features to select and other parameters to generate the toy dataset \
54
- are provided as components to play around.
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
  """