Update app.py
Browse files
app.py
CHANGED
@@ -33,20 +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 |
-
|
37 |
if (st.button('بحث', disabled=False)):
|
38 |
-
|
39 |
text_st = sent+ ' <mask>'
|
40 |
-
|
41 |
dict_next_words = next_word(text_st, pipe)
|
42 |
-
|
43 |
df = pd.DataFrame.from_dict(dict_next_words)
|
44 |
df.reset_index(drop=True, inplace=True)
|
45 |
st.dataframe(df)
|
46 |
#using Graph
|
47 |
if (st.checkbox('الاستعانة بالرسم البياني المعرفي الاحتمالي', value=False)):
|
48 |
a = time()
|
49 |
-
state_cb = True
|
50 |
VocMap = './voc.csv'
|
51 |
ScoreMap = './BM25.csv'
|
52 |
|
@@ -95,10 +90,6 @@ if (st.checkbox('الاستعانة بالرسم البياني المعرفي
|
|
95 |
return tmt
|
96 |
|
97 |
tmt = compute_score(L, id_list)
|
98 |
-
|
99 |
-
for e in sent:
|
100 |
-
del tmt[e]
|
101 |
-
|
102 |
exp_terms = []
|
103 |
t_li = tmt.values()
|
104 |
tmexp = sorted(tmt.items(), key=lambda x: x[1], reverse=True)
|
|
|
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.reset_index(drop=True, inplace=True)
|
41 |
st.dataframe(df)
|
42 |
#using Graph
|
43 |
if (st.checkbox('الاستعانة بالرسم البياني المعرفي الاحتمالي', value=False)):
|
44 |
a = time()
|
|
|
45 |
VocMap = './voc.csv'
|
46 |
ScoreMap = './BM25.csv'
|
47 |
|
|
|
90 |
return tmt
|
91 |
|
92 |
tmt = compute_score(L, id_list)
|
|
|
|
|
|
|
|
|
93 |
exp_terms = []
|
94 |
t_li = tmt.values()
|
95 |
tmexp = sorted(tmt.items(), key=lambda x: x[1], reverse=True)
|