Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Nattyboi
/
demo-app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Nattyboi
commited on
Dec 31, 2023
Commit
746556b
·
1 Parent(s):
2cb30ab
created 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
+
pipe = pipeline("sentiment-analysis")
4
+
5
+
pipe("I want to go home")