Naruto9 commited on
Commit
7f90657
·
verified ·
1 Parent(s): c1a2f4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -4
app.py CHANGED
@@ -1,9 +1,17 @@
1
  import streamlit as st
 
2
  from transformers import pipeline
3
 
4
- pipe = pipeline('sentiemnt-analysis')
5
- text = st.text_area('enter some text!')
 
 
 
 
 
 
 
6
 
7
  if text:
8
- out = pipe(text)
9
- st.json(out)
 
1
  import streamlit as st
2
+
3
  from transformers import pipeline
4
 
5
+ # Initialize the sentiment analysis pipeline
6
+
7
+ pipe = pipeline('sentiment-analysis')
8
+
9
+ # Create a text input area in the Streamlit app
10
+
11
+ text = st.text_area('Enter some text!')
12
+
13
+ # Process the text and display the results if there's input
14
 
15
  if text:
16
+ out = pipe(text)
17
+ st.json(out)