File size: 455 Bytes
a4c6c31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
from transformers import pipeline

def summarize_text(text):
    model = pipeline("text-classification", model = "cross-encoder/qnli-electra-base")
    text_input = model(text)
    return text_input

def main():
    user_input = st.text_area("Input Text Here")
    if st.button("Sentiment"):
        summary = summarize_text(user_input)
        st.write("Sentiment:")
        st.write(summary)

if __name__ == "__main__":
    main()