#import necessary libraries import streamlit as st from transformers import pipeline #give a title to app name = st.title ('Check the sentiment of your words/email before sending it out😎😭😁😔❤️') #buidling a sentiment pipeline pipe = pipeline('sentiment-analysis', model = 'SamLowe/roberta-base-go_emotions') #text field for user to input data text = st.text_area('Enter given text here') # output formated in json format if text: out = pipe(text) st.json(out)