CoolFace
Apppublic

KnowingFly/depression-detection-api

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

Depression Detection API

API for detecting depression from facial images using machine learning.

Endpoints

EndpointMethodDescription
/GETAPI info
/healthGETHealth check
/predictPOSTPredict depression from image
/docsGETInteractive API documentation

Usage

Health Check

bash
curl https://knowingfly-depression-detection-api.hf.space/health

Prediction

bash
curl -X POST "https://knowingfly-depression-detection-api.hf.space/predict" \
  -F "file=@your_image.jpg"

Response Format

json
{
  "prediction": "depression" | "neutral",
  "confidence": 0.85
}

Technology Stack

  • FastAPI
  • TensorFlow/Keras
  • OpenCV (Face Detection)
  • Docker