haizad commited on
Commit
6743b6c
·
1 Parent(s): d8e0581

Add example link

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def select_features(method,num_features):
45
  title = "Selecting features with Sequential Feature Selection"
46
  with gr.Blocks(title=title) as demo:
47
  gr.Markdown(f"## {title}")
48
- gr.Markdown("This app demonstrates feature selection techniques using model based selection and sequential feature selection. The app uses the diabetes dataset from sklearn")
49
 
50
  method = gr.Radio(["model", "sfs-forward", "sfs-backward"], label="Method")
51
  num_features = gr.Textbox(label="Number of features")
 
45
  title = "Selecting features with Sequential Feature Selection"
46
  with gr.Blocks(title=title) as demo:
47
  gr.Markdown(f"## {title}")
48
+ gr.Markdown("This app demonstrates feature selection techniques using model based selection and sequential feature selection. The app uses the diabetes dataset from sklearn. This app is developed based on [scikit-learn example](https://scikit-learn.org/stable/auto_examples/feature_selection/plot_select_from_model_diabetes.html#sphx-glr-auto-examples-feature-selection-plot-select-from-model-diabetes-py)")
49
 
50
  method = gr.Radio(["model", "sfs-forward", "sfs-backward"], label="Method")
51
  num_features = gr.Textbox(label="Number of features")