Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ruthvik7382
/
resume
like
0
Sleeping
App
Files
Files
Community
b712642
resume
/
app.py
ruthvik7382
Update app.py
1e0e32c
verified
4 months ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
streamlit
as
slt
from
transformers
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
text = slt.text_area(
'Give me some text'
)
if
text:
out = pipe(text)
slt.json(out)