Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,24 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
|
5 |
-
|
|
|
6 |
|
7 |
text = st.text_area('enter text: ')
|
|
|
8 |
|
9 |
-
|
10 |
-
|
11 |
st.json(out)
|
|
|
1 |
import streamlit as st
|
2 |
+
# from transformers import pipeline
|
3 |
+
|
4 |
+
|
5 |
+
# pipe = pipeline("text-classification", model="Beehzod/smart_sentiment_analysis")
|
6 |
+
|
7 |
+
# text = st.text_area('enter text: ')
|
8 |
+
|
9 |
+
# if text:
|
10 |
+
# out = pipe(text)
|
11 |
+
# st.json(out)
|
12 |
+
|
13 |
from transformers import pipeline
|
14 |
|
15 |
|
16 |
+
sentiment_pipeline = pipeline("sentiment-analysis", model="Beehzod/smart_sentiment_analysis")
|
17 |
+
|
18 |
|
19 |
text = st.text_area('enter text: ')
|
20 |
+
results = sentiment_pipeline(text)
|
21 |
|
22 |
+
for result in results:
|
23 |
+
#print(f"Label: {result['label']}, Score: {result['score']:.4f}")
|
24 |
st.json(out)
|