How the NSFW scanner works
The scanner loads a pre-trained MobileNetV2 neural network directly in your browser via TensorFlow.js. When you upload an image, the model resizes it internally and runs inference to produce five confidence scores: Neutral, Drawing, Sexy, Hentai, and Porn. Each score represents the probability that the image belongs to that category. The model achieves approximately 93% accuracy across all categories. Because everything runs client-side, your images are never sent to any server — the entire NSFW detection process happens on your device. For metadata-based image verification, see the Authenticity Checker.