Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,7 @@ This app plots the decision surface of four classifiers on two selected features
|
|
99 |
Use the controls below to tune the parameters of the classifiers and the weights of each of them in the soft voting classifier and click submit. The more weight you assign to a classifier, the more importance will be assigned to its predictions compared to the other classifiers in the vote.
|
100 |
'''
|
101 |
|
102 |
-
with gr.Blocks() as demo:
|
103 |
gr.Markdown(info)
|
104 |
|
105 |
selections = combinations(FEATURE_NAMES, 2)
|
|
|
99 |
Use the controls below to tune the parameters of the classifiers and the weights of each of them in the soft voting classifier and click submit. The more weight you assign to a classifier, the more importance will be assigned to its predictions compared to the other classifiers in the vote.
|
100 |
'''
|
101 |
|
102 |
+
with gr.Blocks(analytics_enabled=False) as demo:
|
103 |
gr.Markdown(info)
|
104 |
|
105 |
selections = combinations(FEATURE_NAMES, 2)
|