Hugging Face
Models
Datasets
Spaces
Community
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...
06cfe43
Demo
/
app.py
deepanshudey
Updates
5ebbfc3
over 3 years ago
raw
Copy download link
history
blame
Safe
234 Bytes
import
streamlit
as
st
from
model
import
*
article = user_input = st.text_area(
"Enter the article/ TEXT"
)
with
st.spinner(
'Generating Summary...'
):
output = predict(article)
st.header(
f'Summary:\n\n'
)
st.subheader(output)