File size: 389 Bytes
a7cc2f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6b95f4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)[0]["summary_text"])