Hamda commited on
Commit
22fefa5
·
1 Parent(s): 79c67dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -96,12 +96,11 @@ if (st.checkbox('الاستعانة بالرسم البياني', value=False)):
96
  i+=1
97
  if (i==10):
98
  break
99
- res_df = pd.DataFrame.from_dict(dict_res)
100
- res_df.index += 1
101
- st.dataframe(res_df)
102
  b = time()
103
  exec_time = (b-a)
104
  exec_time_plm = (finish-start)
105
- st.write(f'ثانية {str(exec_time_plm)[:2] } :الوقت المستغرق باستعمال النموذج اللغوي')
106
- st.write(f'ثانية {str(exec_time)[:2] } :الوقت المستغرق باستعمال الرسم البياني')
107
 
 
96
  i+=1
97
  if (i==10):
98
  break
99
+ res_df = pd.DataFrame.from_dict(dict_res)
100
+ res_df.index += 1
101
+ st.dataframe(res_df)
102
  b = time()
103
  exec_time = (b-a)
104
  exec_time_plm = (finish-start)
105
+ st.write(f'{str(exec_time)[:2] } :الوقت المستغرق باستعمال الرسم البياني')
 
106