Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Jassk28
/
SentimentAnalysis
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Jassk28
commited on
Dec 5, 2023
Commit
e961c66
·
1 Parent(s):
d858c09
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
3
+
from transformers import pipepile
4
+
pipe=pipeline('sentiment-analysis')
5
+
text=st.text_area('Enter Some Text')
6
+
if text:
7
+
out=pipe(text)
8
+
st.json(out)