Install
openclaw skills install nsfw-detector-proDetects and classifies explicit content in images, videos, and text using deep learning with configurable sensitivity and context-aware filters.
openclaw skills install nsfw-detector-pro@raghulpasupathi/nsfw-detector-proAdvanced NSFW (Not Safe For Work) content detection system using computer vision, deep learning models, and multi-modal analysis. Detects explicit content in images, videos, and text with high accuracy and configurable sensitivity levels.
https://clawhub.ai/raghulpasupathi/nsfw-detector-pro
npm install @raghulpasupathi/nsfw-detector-pro
{
"enabled": true,
"settings": {
"defaultSensitivity": "moderate",
"sensitivities": {
"strict": {
"pornography": 0.15,
"erotica": 0.25,
"suggestive": 0.40,
"blockThreshold": 0.15
},
"moderate": {
"pornography": 0.40,
"erotica": 0.60,
"suggestive": 0.75,
"blockThreshold": 0.40
},
"relaxed": {
"pornography": 0.70,
"erotica": 0.85,
"suggestive": 0.90,
"blockThreshold": 0.70
}
},
"models": {
"image": {
"enabled": true,
"model": "nsfw-resnet-50",
"useGPU": true
},
"video": {
"enabled": true,
"fps": 2,
"maxFrames": 30
},
"text": {
"enabled": true,
"model": "bert-nsfw-classifier"
}
},
"processing": {
"imageMaxSize": "4096x4096",
"videoMaxDuration": 300,
"batchSize": 32,
"cacheResults": true,
"cacheTTL": 86400
},
"advanced": {
"skinDetection": true,
"faceDetection": true,
"contextAnalysis": true,
"artFilter": true,
"medicalFilter": true
}
}
}
See nsfw-detector-pro-examples.js for complete usage examples.