Add example link
Browse files
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")
|