Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated fromΒ
peb-peb/shravan
abhi99555
/
abhi
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
abhi
/
sentiment_analysis.py
abhi99555
Duplicate from peb-peb/shravan
d532a4d
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
from
transformers
import
pipeline
def
sentiment_analyser
(
text
):
sent = pipeline(
"sentiment-analysis"
,model=
"siebert/sentiment-roberta-large-english"
)
return
sent(text)