CoolFace
Apppublic

RamanaReddy/textsum

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to root
1import streamlit as st2from transformers import pipeline3 4pipe=pipeline('google/pegasus-cnn_dailymail')5text=st.text_area('enter the text')6 7if text:8    out=pipe(text)9    st.json(out)10