Demo / app.py
Deepanshu Dey
Updates
e8b25ec
raw history blame
No virus
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)