Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
domro11
/
data_dynamos
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2eac584
data_dynamos
/
app.py
domro11
Create app.py
2eac584
about 2 years ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
text = st.text_area(
'enter some text!'
)
if
text: