Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SagarKeshave
/
math_app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a71a189
math_app
/
app.py
SagarKeshave
Create app.py
f6edbce
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
178 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
"sentiment-analysis"
)
text = st.text_area(
"Enter text"
)
if
text:
out = pipe(text)
st.json(out)