CoolFace
Apppublic

MuhammadSheraza002/facial-emotion-detection-backend

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
App README

EmotionAI Backend API ๐ŸŽญ

FastAPI-based REST API for facial emotion detection using ResNet50V2 deep learning model.

API Endpoint

  • โ€”POST /predict-image/ โ€” Upload an image to detect emotion
  • โ€”GET /docs โ€” Swagger UI for API testing

Emotions Detected

Angry, Disgust, Fear, Happy, Neutral, Sad, Surprise

Usage

bash
curl -X POST "https://muhammadsheraza002-facial-emotion-detection-backend.hf.space/predict-image/" \
  -H "Content-Type: multipart/form-data" \
  -F "file=@path/to/image.jpg"

Response:

json
{"emotion": "Happy"}