Hellisotherpeople commited on
Commit
996905d
1 Parent(s): d9d7c0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -205,7 +205,7 @@ 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 peterbuted samples, higher creates a better explanation but takes longer", value = 1000)
209
  char_based = form_explainer.checkbox("Check this if you want to use a character based explanier", value = False)
210
  form_explainer.form_submit_button("Submit")
211
 
 
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 peterbuted samples, higher creates a better explanation but takes longer - you should most likely increase this", value = 200)
209
  char_based = form_explainer.checkbox("Check this if you want to use a character based explanier", value = False)
210
  form_explainer.form_submit_button("Submit")
211