shrish191 commited on
Commit
b3dcea1
·
verified ·
1 Parent(s): c93d183

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -31,9 +31,9 @@ tokenizer = BertTokenizer.from_pretrained("shrish191/sentiment-bert")
31
 
32
  # Manually define the correct mapping
33
  LABELS = {
34
- 0: "Negative",
35
- 1: "Neutral",
36
- 2: "Positive"
37
  }
38
 
39
  def classify_sentiment(text):
 
31
 
32
  # Manually define the correct mapping
33
  LABELS = {
34
+ 0: "Neutral",
35
+ 1: "Positive",
36
+ 2: "Negative"
37
  }
38
 
39
  def classify_sentiment(text):