shawarmabytes commited on
Commit
a88d9d5
·
1 Parent(s): 0d3acf1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -59,12 +59,9 @@ st.sidebar.subheader("Disclaimer/Limitations")
59
  st.sidebar.write("The model only outputs sadness, joy, love, anger, fear, and surprise. With that said, it does not completely encompass the emotions that a human being feels, and the application only suggests a playlist based on the aforementioned emotions.")
60
 
61
  st.sidebar.subheader("Performance Benchmarks")
 
62
 
63
- df = pd.DataFrame(
64
- np.random.randn(10, 5),
65
- columns=('col %d' % i for i in range(5)))
66
-
67
- st.sidebar.table(df)
68
 
69
 
70
  tester(emo)
 
59
  st.sidebar.write("The model only outputs sadness, joy, love, anger, fear, and surprise. With that said, it does not completely encompass the emotions that a human being feels, and the application only suggests a playlist based on the aforementioned emotions.")
60
 
61
  st.sidebar.subheader("Performance Benchmarks")
62
+ table = [['Model', 'Accuracy', 'F1 Score', 'Test Sample per Second'], ['db','93.8','93.79','368.69']]
63
 
64
+ st.sidebar.write(tabulate(table))
 
 
 
 
65
 
66
 
67
  tester(emo)