Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
karthickg12
/
apps
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b828216
apps
/
app.py
karthickg12
Update app.py
b828216
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
137 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe=pipeline(
"sentiment-analysis"
)
t=st.text_area(
"text"
)
st.write(pipe(t))