Howosn commited on
Commit
cfb5fed
1 Parent(s): f87cc8b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -0
app.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ # Load the summarization & translation model pipeline
5
+ tran_sum_pipe = pipeline("translation", model='utrobinmv/t5_summary_en_ru_zh_base_2048')
6
+ sentiment_pipeline = pipeline("text-classification", model="Howosn/Sentiment_Model")
7
+
8
+ # Streamlit application title
9
+ st.title("Emotion analysis")
10
+ st.write("Turn Your Input Into Sentiment Score")
11
+
12
+ # Text input for the user to enter the text to analyze
13
+ text = st.text_area("Enter the text", "")
14
+
15
+ # Perform analysis result when the user clicks the "Analyse" button
16
+ if st.button("Analyse"):
17
+ # Perform text classification on the input text
18
+ trans_sum = tran_sum_pipe(text)
19
+ result = sentiment_pipeline(trans_sum)
20
+
21
+ # Display the analysis result
22
+ st.write("Text:", text)
23
+ st.write("result:", result)