sign-idd-inference / README.md
HARSHIT-hash-07
feat: integrated cloud-based diffusion inference module
17f1f54
|
Raw
History Blame Contribute Delete
831 Bytes
metadata
title: SignBridge AI
emoji: 🤟
colorFrom: indigo
colorTo: blue
sdk: docker
pinned: false

SignBridge AI: Live AI Sign Language Generation

This is the backend API for SignBridge, providing real-time text-to-sign skeletal animation generation.

How to use

The API is built with FastAPI. You can interact with it via POST requests to /translate.

Endpoint: /translate

POST Request:

{
  "text": "today weather rain"
}

Response:

{
  "skeletons": null,
  "video_url": "http://127.0.0.1:8000/static/gen_abc123.mp4",
  "text_processed": "today weather rain"
}

Deployment Notes

  • This space requires best.ckpt to be placed in the weights/ directory before building.
  • The model runs on CPU by default for stability in free-tier spaces.
  • Uses FFmpeg for video processing.