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...
6fcb094
math_app
/
app.py
SagarKeshave
init
227be8b
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
176 Bytes
import
streamlit
as
st
from
transformers
import
pipelie
pipe = pipelie(
"sentiment-analysis"
)
text = st.text_area(
"Enter text"
)
if
text:
out = pipe(text)
st.json(out)