Commit
·
28e80ff
1
Parent(s):
a9de62d
Update app.py
Browse files
app.py
CHANGED
@@ -207,7 +207,7 @@ form_explainer.header("Explainer Settings")
|
|
207 |
position_dep = form_explainer.checkbox("Check this if you want to take into account the position of a word in the interpretation", value = False)
|
208 |
number_samples = form_explainer.number_input("Enter the number of explainer perpetuated samples, higher creates a better explanation but takes longer", value = 200)
|
209 |
char_based = form_explainer.checkbox("Check this if you want to use a character based explainer", value = False)
|
210 |
-
top_features = form_explainer.number_input("Enter the top number of features we want to show", value =
|
211 |
top_targets = form_explainer.number_input("Enter the top number of targets we want to show explanations of", value = 5)
|
212 |
form_explainer.form_submit_button("Submit")
|
213 |
|
|
|
207 |
position_dep = form_explainer.checkbox("Check this if you want to take into account the position of a word in the interpretation", value = False)
|
208 |
number_samples = form_explainer.number_input("Enter the number of explainer perpetuated samples, higher creates a better explanation but takes longer", value = 200)
|
209 |
char_based = form_explainer.checkbox("Check this if you want to use a character based explainer", value = False)
|
210 |
+
top_features = form_explainer.number_input("Enter the top number of features we want to show", value = 50)
|
211 |
top_targets = form_explainer.number_input("Enter the top number of targets we want to show explanations of", value = 5)
|
212 |
form_explainer.form_submit_button("Submit")
|
213 |
|