Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -38,6 +38,5 @@ st.write("Enter a sentence to analyze text's Tone:")
|
|
38 |
|
39 |
user_input = st.text_input("")
|
40 |
if user_input:
|
41 |
-
result = predict.predict(user_input)
|
42 |
-
|
43 |
-
st.write(f"TONE : {result}")
|
|
|
38 |
|
39 |
user_input = st.text_input("")
|
40 |
if user_input:
|
41 |
+
result = predict.predict(user_input).upper()
|
42 |
+
st.write("TONE :- ",result)
|
|