Text_Summary / app.py
AjayKr09's picture
Create app.py
a7cc2f7 verified
raw
history blame
370 Bytes
import streamlit as st
import pandas as pd
import numpy as np
import torch
import transformers
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("summarization", model="facebook/bart-large-xsum")
st.write('\n')
st.write('Enter Text for Summarization:')
text=st.text_input("")
if st.button("Submit"):
st.write(pipe(text))