File size: 1,195 Bytes
3d493f7
2188e38
 
 
 
 
 
 
 
a6d477d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85ecd3f
a6d477d
85ecd3f
a6d477d
 
 
85ecd3f
a6d477d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
language: en
tags:
- text-classification
- pytorch
- bert
datasets:
- go_emotions
license: mit
---

- [linkedin.com/in/arpanghoshal](https://www.linkedin.com/in/arpanghoshal)


## What is Ekman Emotions?

Ekman emotions refer to a specific set of six basic emotions that are thought to be universal across cultures. </br>
These emotions were identified by psychologist Paul Ekman, who conducted extensive research on facial expressions and emotional experience. </br>

The six Ekman emotions are: 

- Happiness 
- Sadness
- Anger
- Fear
- Disgust
- Surprise

Ekman's research found that these emotions are expressed through universal facial expressions, which are recognizable across cultures. </br>
According to Ekman, these emotions are biologically based and are fundamental to human social interaction. </br>
Ekman's work on basic emotions has had a significant impact on the field of psychology and has been widely influential in the study of emotional expression and experience.

## Usage

```python

from transformers import pipeline

ekman = pipeline('sentiment-analysis', model='arpanghoshal/EkmanClassifier')

ekman_labels = ekman("Thanks for using it.")

print(ekman_labels)

```