SandeepVvigneshwar commited on
Commit
c8b50fe
·
verified ·
1 Parent(s): dc7f477

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -63,7 +63,7 @@ from transformers import pipeline
63
 
64
  emotion_classifier = pipeline("text-classification", model="SandeepVvigneshwar/sentiment-classification-albert-large-v2")
65
 
66
- text = "I am so happy to be part of this project!"
67
  emotion = emotion_classifier(text)
68
  print(emotion)
69
  ```
 
63
 
64
  emotion_classifier = pipeline("text-classification", model="SandeepVvigneshwar/sentiment-classification-albert-large-v2")
65
 
66
+ text = "Hello! How are you?"
67
  emotion = emotion_classifier(text)
68
  print(emotion)
69
  ```