Beehzod commited on
Commit
ea55c47
·
verified ·
1 Parent(s): 2efbb7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -3
app.py CHANGED
@@ -1,11 +1,24 @@
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)
 
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)