Commit
·
a9de62d
1
Parent(s):
c4ccf2e
Update app.py
Browse files
app.py
CHANGED
@@ -205,8 +205,8 @@ text_example = """Judge Leon last week questioned the effectiveness of the gover
|
|
205 |
form_explainer = st.sidebar.form("explainer_form")
|
206 |
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
|
209 |
-
char_based = form_explainer.checkbox("Check this if you want to use a character based
|
210 |
top_features = form_explainer.number_input("Enter the top number of features we want to show", value = 200)
|
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")
|
|
|
205 |
form_explainer = st.sidebar.form("explainer_form")
|
206 |
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 = 200)
|
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")
|