File size: 387 Bytes
2fca1b0 |
1 2 3 4 5 6 7 8 9 10 |
### Introduction:
This model belongs to text-classification. You can check whether the sentence consists any emotion.
### Label Explaination:
LABEL_1: Non Neutral (have some emotions)
LABEL_0: Neutral (have no emotion)
### Usage:
```python
>>> from transformers import pipeline
>>> nnc = pipeline('sentiment-analysis', model='distilbert-base-uncased')
>>> nnc("Hello, I'm a good model.") |