Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,21 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
|
|
|
| 6 |
|
| 7 |
-
|
|
|
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
```
|
| 12 |
-
$ pip install -r requirements.txt
|
| 13 |
-
```
|
| 14 |
-
|
| 15 |
-
2. Run the app
|
| 16 |
-
|
| 17 |
-
```
|
| 18 |
-
$ streamlit run streamlit_app.py
|
| 19 |
-
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Facial Expression Classifier 😊
|
| 3 |
+
emoji: 🎭
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: "1.35.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
|
| 12 |
+
# Facial Expression Classifier
|
| 13 |
|
| 14 |
+
This Streamlit app uses computer vision to detect facial expressions such as happiness, sadness, anger, etc.
|
| 15 |
+
You can capture an image using your webcam or upload one, and the model will predict the emotion.
|
| 16 |
|
| 17 |
+
✅ Built with PyTorch and Streamlit
|
| 18 |
+
📸 Uses Grad-CAM for model interpretability
|
| 19 |
+
🧠 Models supported: CNN, VGG16, ViT
|
| 20 |
|
| 21 |
+
> Try it out and contribute to the dataset!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|