File size: 531 Bytes
8c30dcc
 
14c92db
bff4076
8c30dcc
d848e81
 
8c30dcc
70198d4
d24c8c8
8c30dcc
d24c8c8
8c30dcc
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st
from transformers import pipeline

classifier = pipeline("summarization", model="sshleifer/distilbart-cnn-12-6")
def main():
    #Token Sample
    st.title("Summarize Classification ⋆·˚ ༘ *")

    with st.form("text_field"):
        text = st.text_area('enter some text:')
        # clicked==True only when the button is clicked
        clicked = st.form_submit_button("Done!")
        if clicked:
          results = classifier([text])
          st.json(results)

if __name__ == "__main__":
    main()