chaman420 commited on
Commit
546d63f
·
verified ·
1 Parent(s): 8632bee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,8 +2,8 @@ import streamlit as st
2
  from transformers import pipeline
3
 
4
  pipe = pipeline('sentiment-analysis')
5
- text = st. text area('enter some text!')
6
 
7
  if text:
8
- out = pipe (text)
9
- st. json (out)
 
2
  from transformers import pipeline
3
 
4
  pipe = pipeline('sentiment-analysis')
5
+ text = st.textarea('enter some text!')
6
 
7
  if text:
8
+ out = pipe(text)
9
+ st.json(out)