malper commited on
Commit
13b9c74
·
1 Parent(s): 701333f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -8,9 +8,9 @@ st.success('Loaded!')
8
  text = st.text_area('Enter Hebrew text')
9
 
10
  kwargs = {
11
- 'v_thresh': st.sidebar.slider("Vowel addition threshold", min_value=0, max_value=1, value=0.5),
12
- 'd_thresh': st.sidebar.slider("Deletion threshold", min_value=0, max_value=1, value=0.5),
13
- 'o_thresh': st.sidebar.slider("Other diacritic threshold", min_value=0, max_value=1, value=0.5)
14
  }
15
 
16
  if text:
 
8
  text = st.text_area('Enter Hebrew text')
9
 
10
  kwargs = {
11
+ 'v_thresh': st.sidebar.slider("Vowel addition threshold", min_value=0., max_value=1., value=0.5),
12
+ 'd_thresh': st.sidebar.slider("Deletion threshold", min_value=0., max_value=1., value=0.5),
13
+ 'o_thresh': st.sidebar.slider("Other diacritic threshold", min_value=0., max_value=1., value=0.5)
14
  }
15
 
16
  if text: