CoolFace
Apppublic

phantomfury/kaleidoscope-content-moderation

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
App README

Content Moderation API

NSFW detection using OpenCLIP zero-shot classification.

API Endpoints

POST /classify

Upload an image to classify its safety.

Request:

bash
curl -X POST "https://phantomfury-kaleidoscope-content-moderation.hf.space/classify" \
  -F "file=@image.jpg"

Response:

json
{
  "results": [
    {"label": "safe content", "score": 0.8542},
    {"label": "nsfw content", "score": 0.0821}
  ]
}

GET /health

Check service health status.

Model

  • Architecture: OpenCLIP ViT-B-32
  • Method: Zero-shot classification

Interactive Documentation

Visit: https://phantomfury-kaleidoscope-content-moderation.hf.space/docs

Credits

Part of the Kaleidoscope AI project.