Howosn commited on
Commit
0f3fa61
1 Parent(s): a5b0a79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -23
app.py CHANGED
@@ -1,23 +0,0 @@
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)