Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- keras
|
| 6 |
+
- cnn
|
| 7 |
+
- facial-expression
|
| 8 |
+
- emoji
|
| 9 |
+
- image-classification
|
| 10 |
+
- emotion-detection
|
| 11 |
+
model-index:
|
| 12 |
+
- name: Emoji Generator from Facial Expression
|
| 13 |
+
results:
|
| 14 |
+
- task:
|
| 15 |
+
type: image-classification
|
| 16 |
+
name: Facial Emotion Classification
|
| 17 |
+
dataset:
|
| 18 |
+
name: FER-2013
|
| 19 |
+
type: fer2013
|
| 20 |
+
metrics:
|
| 21 |
+
- name: Accuracy
|
| 22 |
+
type: accuracy
|
| 23 |
+
value: 0.83
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
# Emoji Generator from Facial Expressions using CNN
|
| 27 |
+
|
| 28 |
+
This project uses a Convolutional Neural Network (CNN) to recognize human facial expressions from grayscale images and maps the detected emotion to a representative emoji (e.g., π for Happy, π’ for Sad, π for Angry).
|
| 29 |
+
|
| 30 |
+
## Model Info
|
| 31 |
+
|
| 32 |
+
- **Framework**: TensorFlow / Keras
|
| 33 |
+
- **Input**: 48x48 grayscale facial image
|
| 34 |
+
- **Output**: Predicted emotion label mapped to an emoji
|
| 35 |
+
- **Model Format**: `.keras`
|
| 36 |
+
- **Dataset**: [FER-2013](https://www.kaggle.com/datasets/msambare/fer2013)
|
| 37 |
+
|
| 38 |
+
## Emotion to Emoji Mapping
|
| 39 |
+
|
| 40 |
+
```text
|
| 41 |
+
0 β Angry
|
| 42 |
+
1 β Disgust
|
| 43 |
+
2 β Fear
|
| 44 |
+
3 β Happy
|
| 45 |
+
4 β Neutral
|
| 46 |
+
5 β Sad
|
| 47 |
+
6 β Surprise
|
| 48 |
+
|