Update app.py
Browse files
app.py
CHANGED
@@ -4,4 +4,4 @@ classifier = pipeline("sentiment-analysis", model="distilbert-base-uncased-finet
|
|
4 |
text = st.text_area('enter some text:')
|
5 |
if text:
|
6 |
results = classifier([text])
|
7 |
-
st.json(
|
|
|
4 |
text = st.text_area('enter some text:')
|
5 |
if text:
|
6 |
results = classifier([text])
|
7 |
+
st.json(results)
|