Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Compete2
/
demo-app
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Compete2
commited on
Feb 22
Commit
4e30f44
·
verified
·
1 Parent(s):
e2606e6
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from transformer import pipeline
2
+
import streamlit as st
3
+
4
+
pipe = pipeline('sentiment analysis')
5
+
input_text = st.text_input('Enter some text')
6
+
7
+
if input_text:
8
+
st.json(pipe(input_text))