Update app.py
Browse files
app.py
CHANGED
@@ -33,13 +33,15 @@ def next_word(text, pipe):
|
|
33 |
res_dict['الكلمة المقترحة'].append(e['token_str'])
|
34 |
res_dict['العلامة'].append(e['score'])
|
35 |
return res_dict
|
|
|
36 |
if (st.button('بحث', disabled=False)):
|
37 |
text_st = sent+ ' <mask>'
|
38 |
dict_next_words = next_word(text_st, pipe)
|
39 |
df = pd.DataFrame.from_dict(dict_next_words)
|
40 |
-
df.
|
41 |
-
st.dataframe(
|
42 |
#using Graph
|
|
|
43 |
if (st.checkbox('الاستعانة بالرسم البياني المعرفي الاحتمالي', value=False)):
|
44 |
a = time()
|
45 |
VocMap = './voc.csv'
|
@@ -104,7 +106,9 @@ if (st.checkbox('الاستعانة بالرسم البياني المعرفي
|
|
104 |
i+=1
|
105 |
if (i==10):
|
106 |
break
|
107 |
-
|
|
|
|
|
108 |
res_df = pd.DataFrame.from_dict(dict_res)
|
109 |
res_df.index += 1
|
110 |
|
@@ -112,13 +116,15 @@ if (st.checkbox('الاستعانة بالرسم البياني المعرفي
|
|
112 |
exec_time = (b-a)
|
113 |
text_st = sent+ ' <mask>'
|
114 |
dict_next_words = next_word(text_st, pipe)
|
|
|
115 |
df = pd.DataFrame.from_dict(dict_next_words)
|
116 |
-
df.
|
|
|
117 |
str_time = str(exec_time)[:3]
|
118 |
|
119 |
st.markdown("""---""")
|
120 |
st.header("الكلمات المقترحة باستعمال النموذج اللغوي")
|
121 |
-
st.dataframe(
|
122 |
st.markdown("""---""")
|
123 |
st.header("الكلمات المقترحة باستعمال الرسم البياني")
|
124 |
st.dataframe(res_df)
|
|
|
33 |
res_dict['الكلمة المقترحة'].append(e['token_str'])
|
34 |
res_dict['العلامة'].append(e['score'])
|
35 |
return res_dict
|
36 |
+
|
37 |
if (st.button('بحث', disabled=False)):
|
38 |
text_st = sent+ ' <mask>'
|
39 |
dict_next_words = next_word(text_st, pipe)
|
40 |
df = pd.DataFrame.from_dict(dict_next_words)
|
41 |
+
new_df = df[~df['الكلمة المقترحة'].isin(sent)]
|
42 |
+
st.dataframe(new_df)
|
43 |
#using Graph
|
44 |
+
|
45 |
if (st.checkbox('الاستعانة بالرسم البياني المعرفي الاحتمالي', value=False)):
|
46 |
a = time()
|
47 |
VocMap = './voc.csv'
|
|
|
106 |
i+=1
|
107 |
if (i==10):
|
108 |
break
|
109 |
+
for e in sent:
|
110 |
+
if (e in tmt):
|
111 |
+
del tmt[e]
|
112 |
res_df = pd.DataFrame.from_dict(dict_res)
|
113 |
res_df.index += 1
|
114 |
|
|
|
116 |
exec_time = (b-a)
|
117 |
text_st = sent+ ' <mask>'
|
118 |
dict_next_words = next_word(text_st, pipe)
|
119 |
+
|
120 |
df = pd.DataFrame.from_dict(dict_next_words)
|
121 |
+
new_df = df[~df['الكلمة المقترحة'].isin(sent)]
|
122 |
+
new_df.index += 1
|
123 |
str_time = str(exec_time)[:3]
|
124 |
|
125 |
st.markdown("""---""")
|
126 |
st.header("الكلمات المقترحة باستعمال النموذج اللغوي")
|
127 |
+
st.dataframe(new_df)
|
128 |
st.markdown("""---""")
|
129 |
st.header("الكلمات المقترحة باستعمال الرسم البياني")
|
130 |
st.dataframe(res_df)
|