malper commited on
Commit
6ded373
·
1 Parent(s): 13b9c74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,8 +9,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:
 
9
 
10
  kwargs = {
11
  'v_thresh': st.sidebar.slider("Vowel addition threshold", min_value=0., max_value=1., value=0.5),
12
+ 'o_thresh': st.sidebar.slider("Other diacritic threshold", min_value=0., max_value=1., value=0.5),
13
+ 'd_thresh': st.sidebar.slider("Deletion threshold", min_value=0., max_value=1., value=0.5)
14
  }
15
 
16
  if text: