Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gaurinath
/
Senti
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
gaurinath
commited on
Sep 19, 2025
Commit
d2c8516
·
verified
·
1 Parent(s):
4115159
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from transformers import pipeline
2
+
3
+
model = pipeline("sentiment-analysis")
4
+
result = model("I love Hugging Face!")
5
+
print(result)