Osiris commited on
Commit
2fca1b0
1 Parent(s): 83d3ddf

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Introduction:
2
+ This model belongs to text-classification. You can check whether the sentence consists any emotion.
3
+ ### Label Explaination:
4
+ LABEL_1: Non Neutral (have some emotions)
5
+ LABEL_0: Neutral (have no emotion)
6
+ ### Usage:
7
+ ```python
8
+ >>> from transformers import pipeline
9
+ >>> nnc = pipeline('sentiment-analysis', model='distilbert-base-uncased')
10
+ >>> nnc("Hello, I'm a good model.")