phantomfury/kaleidoscope-content-moderation
0
Content Moderation API
NSFW detection using OpenCLIP zero-shot classification.
API Endpoints
POST /classify
Upload an image to classify its safety.
Request:
curl -X POST "https://phantomfury-kaleidoscope-content-moderation.hf.space/classify" \
-F "file=@image.jpg"Response:
{
"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.
