Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
antoniorached
/
Sentiment-Analysis
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
antoniorached
commited on
Sep 1, 2024
Commit
4cb4ffd
·
verified
·
1 Parent(s):
2db8728
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,5 @@
1
+
from transformers import pipeline
2
+
3
+
pipe = pipeline("sentiment-analysis")
4
+
5
+
print(pipe(input))