XUkt commited on
Commit
2f989ae
1 Parent(s): 00a489c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -16
app.py CHANGED
@@ -1,25 +1,30 @@
1
  import streamlit as st
2
  from transformers import pipeline
 
3
  # Load the text classification model pipeline
4
- classifier = pipeline("text-classification",model='isom5240sp24/bert-base-
5
- uncased-emotion', return_all_scores=True)
6
  # Streamlit application title
7
  st.title("Text Classification for you")
8
- st.write("Classification for 6 emotions: sadness, joy, love, anger, fear,
9
- surprise")
10
  # Text input for user to enter the text to classify
11
  text = st.text_area("Enter the text to classify", "")
 
12
  # Perform text classification when the user clicks the "Classify" button
13
  if st.button("Classify"):
14
- # Perform text classification on the input text
15
- results = classifier(text)[0]
16
- # Display the classification result
17
- max_score = float('-inf')
18
- max_label = ''
19
- for result in results:
20
- if result['score'] > max_score:
21
- max_score = result['score']
22
- max_label = result['label']
23
- st.write("Text:", text)
24
- st.write("Label:", max_label)
25
- st.write("Score:", max_score)
 
 
 
 
1
  import streamlit as st
2
  from transformers import pipeline
3
+
4
  # Load the text classification model pipeline
5
+ classifier = pipeline("text-classification",model='isom5240sp24/bert-base-uncased-emotion', return_all_scores=True)
6
+
7
  # Streamlit application title
8
  st.title("Text Classification for you")
9
+ st.write("Classification for 6 emotions: sadness, joy, love, anger, fear, surprise")
10
+
11
  # Text input for user to enter the text to classify
12
  text = st.text_area("Enter the text to classify", "")
13
+
14
  # Perform text classification when the user clicks the "Classify" button
15
  if st.button("Classify"):
16
+ # Perform text classification on the input text
17
+ results = classifier(text)[0]
18
+
19
+ # Display the classification result
20
+ max_score = float('-inf')
21
+ max_label = ''
22
+
23
+ for result in results:
24
+ if result['score'] > max_score:
25
+ max_score = result['score']
26
+ max_label = result['label']
27
+
28
+ st.write("Text:", text)
29
+ st.write("Label:", max_label)
30
+ st.write("Score:", max_score)