Update app.py
Browse files
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 |
-
'
|
13 |
-
'
|
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:
|