Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
visit2AIWarrior
/
app-demo
like
2
Runtime error
App
Files
Files
Community
9d4d99e
app-demo
/
app.py
visit2sachin56
Create app.py
1bea7ff
verified
7 months ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
streamit
as
st
from
transformers
import
pipeline
pipe = pipeline(
"Sentimental Analysis !!"
)
text = st.text_Area(
"Enter some text..."
)
if
text:
out=pipe(text)
st.json(out)