speech analysis code complete
Browse files
app.py
CHANGED
@@ -39,3 +39,7 @@ if uploaded_file is not None:
|
|
39 |
st.write("Top 5 Predicted Emotions:")
|
40 |
for result in results:
|
41 |
st.write(f"{result['label']}: {result['score']:.4f}")
|
|
|
|
|
|
|
|
|
|
39 |
st.write("Top 5 Predicted Emotions:")
|
40 |
for result in results:
|
41 |
st.write(f"{result['label']}: {result['score']:.4f}")
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
Rewrite this code removing the streamlit so it can be hosted with NEXTjs app
|