Hamda commited on
Commit
67ec166
1 Parent(s): 188fe7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -20,13 +20,12 @@ def next_word(text, pipe):
20
  res_dict['Score'].append(e['score'])
21
  return res_dict
22
 
23
- st.title("التنبؤ بالمتصاحبات اللغوية")
24
- st.write("المساعدة اللغوية في التنبؤ بالمتلازمات والمتصاحبات والتعبيرات الاصطلاحية وتصحيحها")
25
  default_value = "بيعت الأسلحة في السوق"
26
  # sent is the variable holding the user's input
27
- sent = st.text_area("Input", default_value, height=30)
28
 
29
- st.checkbox('Use Graph', value=False)
30
 
31
  text_st = sent+ ' <mask>'
32
 
 
20
  res_dict['Score'].append(e['score'])
21
  return res_dict
22
 
23
+ st.title("المساعدة اللغوية في التنبؤ بالمتلازمات والمتصاحبات والتعبيرات الاصطلاحية وتصحيحها")
 
24
  default_value = "بيعت الأسلحة في السوق"
25
  # sent is the variable holding the user's input
26
+ sent = st.text_area("مدخل", default_value, height=20)
27
 
28
+ st.checkbox('استعمال الرسم البياني', value=False)
29
 
30
  text_st = sent+ ' <mask>'
31