Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
deepanshudey
/
Demo
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8d80c4e
Demo
/
app.py
Deepanshu Dey
Updates
e8b25ec
over 3 years ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
streamlit
as
st
from
model
import
*
article = st.text_input(
"label goes here"
)
output = predict(article)
st.header(
f'Summary:\n\n'
)
st.subheader(output)