3v324v23 commited on
Commit
6be40eb
·
1 Parent(s): 7b0b9b0

revise model_result

Browse files
Files changed (1) hide show
  1. model_result.py +8 -1
model_result.py CHANGED
@@ -21,7 +21,7 @@ def report():
21
  progress_bar = st.sidebar.progress(0)
22
  status_text = st.sidebar.empty()
23
  last_rows = [df[data].iloc[0]]
24
- chart = st.line_chart(last_rows, use_container_width=True, height=500)
25
 
26
  for i in range(1, len(df)):
27
  new_rows = [df[data].iloc[i]]
@@ -40,6 +40,13 @@ def report():
40
  performance_plot(data_plot)
41
 
42
  st.button("Re-run")
 
 
 
 
 
 
 
43
 
44
  if __name__ == "__main__":
45
  report()
 
21
  progress_bar = st.sidebar.progress(0)
22
  status_text = st.sidebar.empty()
23
  last_rows = [df[data].iloc[0]]
24
+ chart = st.line_chart(last_rows, use_container_width=True, height=400)
25
 
26
  for i in range(1, len(df)):
27
  new_rows = [df[data].iloc[i]]
 
40
  performance_plot(data_plot)
41
 
42
  st.button("Re-run")
43
+
44
+ st.markdown('''
45
+ * In this model, it can be observed that the convergence occurs before epoch 20.
46
+ * From epoch 40-50, the model starts to stagnate, prompting a reduction in the learning rate.
47
+ * However, it can be seen that the model is slightly less stable in validation before the learning rate reduction.
48
+ * Based on these observations, we can say that this model is still slightly underfit.
49
+ ''')
50
 
51
  if __name__ == "__main__":
52
  report()