NsfwSpy 2.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package NsfwSpy --version 2.3.0
NuGet\Install-Package NsfwSpy -Version 2.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NsfwSpy" Version="2.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NsfwSpy --version 2.3.0
#r "nuget: NsfwSpy, 2.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NsfwSpy as a Cake Addin
#addin nuget:?package=NsfwSpy&version=2.3.0

// Install NsfwSpy as a Cake Tool
#tool nuget:?package=NsfwSpy&version=2.3.0

Introduction

NsfwSpy is a nudity/pornography image classifier built for .NET Core 2.0 and later, with support for Windows, macOS and Linux, to aid in moderating user-generated content for various different application types, written in C#. The ML.NET model has been trained against the ResNet V250 neural net architecture with 395,000 images (90GB), from 4 different categories:

Label Description
Pornography Images that depict sexual acts and nudity.
Sexy Images of people in their underwear and men who are topless.
Hentai Drawings or animations of sexual acts and nudity.
Neutral Images that are not sexual in nature.

Performance

NsfwSpy isn't perfect, but the accuracy should be good enough to detect approximately 96% of Nsfw images, those being images that are classed as pornography, sexy or hentai.

Pornography Sexy Hentai Neutral
Is Nsfw (pornography + sexy + hentai >= 0.5) 96.7% 97.2% 94.9% 2.5%
Correctly Predicted Label 85.5% 84.4% 87.8% 97.8%

Quick Start

This project is available as a NuGet package and can be installed with the following commands:

Package Manager

Install-Package NsfwSpy

.NET CLI

dotnet add package NsfwSpy

Classify an Image File

var nsfwSpy = new NsfwSpy();
var result = nsfwSpy.ClassifyImage(@"C:\Users\username\Documents\flower.jpg");

Classify a Web Image

var uri = new Uri("https://raw.githubusercontent.com/d00ML0rDz/NsfwSpy/main/NsfwSpy.Test/Assets/flower.jpg");
var nsfwSpy = new NsfwSpy();
var result = nsfwSpy.ClassifyImage(uri);

Classify an Image from a Byte Array

var fileBytes = File.ReadAllBytes(filePath);
var nsfwSpy = new NsfwSpy();
var result = nsfwSpy.ClassifyImage(fileBytes);

Classify Multiple Image Files

var files = Directory.GetFiles(@"C:\Users\username\Pictures");
var nsfwSpy = new NsfwSpy();
var results = nsfwSpy.ClassifyImages(files, (filePath, result) =>
{
    Console.WriteLine($"{filePath} - {result.PredictedLabel}");
});

Classify a Gif File

var nsfwSpy = new NsfwSpy();
var result = nsfwSpy.ClassifyGif(@"C:\Users\username\Documents\happy.gif");

Classify a Web Gif

var uri = new Uri("https://raw.githubusercontent.com/d00ML0rDz/NsfwSpy/main/NsfwSpy.Test/Assets/cool.gif");
var nsfwSpy = new NsfwSpy();
var result = nsfwSpy.ClassifyGif(uri);

Dependency Injection

services.AddScoped<INsfwSpy, NsfwSpy>();

GPU Support

To get GPU support working, please follow the prerequisite steps here to install CUDA v10.1 and CUDNN v7.6.4. Later versions do not work (as I tried with CUDA v11.4). The SciSharp.TensorFlow.Redist-Windows-GPU and SciSharp.TensorFlow.Redist-Linux-GPU packages are already included as part of the NsfwSpy package.

macOS Support

To get NsfwSpy working on macOS, the SciSharp.TensorFlow.Redist v2.3.1 NuGet package also needs to be installed. This not included by default as it interfers with supporting GPUs on Windows and Linux. You can do this with either of the following commands:

Package Manager

Install-Package SciSharp.TensorFlow.Redist -Version 2.3.1

.NET CLI

dotnet add package SciSharp.TensorFlow.Redist --version 2.3.1

Notes

Using NsfwSpy? Let us know! We're keen to hear how the technology is being used and improving the safety of applications.

Got an issue or found something not quite right? Report it here on GitHub and we'll try to help as best as possible.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NsfwSpy:

Package Downloads
Frank.SemanticKernel.Extensions.NsfwSpyDotNet

NSFW detection 'filter' for Semantic Kernel

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.0 41,218 11/5/2022
3.4.3 7,635 5/28/2022
3.4.2 6,197 5/18/2022
3.4.1 5,322 5/17/2022
3.4.0 6,886 5/3/2022
3.3.1 5,716 5/3/2022
3.3.0 5,984 4/25/2022
3.2.0 5,736 4/15/2022
3.1.0 5,222 12/24/2021
3.0.1 4,478 12/14/2021
3.0.0 4,574 12/8/2021
2.5.0 4,380 11/3/2021
2.4.0 4,816 10/9/2021
2.3.0 4,433 10/6/2021
2.2.0 4,288 10/6/2021
2.2.0-beta.1 291 10/6/2021
2.2.0-alpha 4,181 10/6/2021
2.1.0 4,350 9/24/2021
2.0.0 4,251 9/23/2021
1.2.0 4,454 9/19/2021
1.1.1 4,331 9/19/2021
1.1.0 4,301 9/18/2021
1.0.11 4,454 9/17/2021
1.0.10 4,221 9/17/2021
1.0.9 4,480 9/17/2021
1.0.8 4,592 9/16/2021
1.0.7 4,356 9/16/2021
1.0.6 2,643 9/16/2021
1.0.5 2,738 9/16/2021
1.0.4 2,651 9/16/2021
1.0.3 4,500 9/16/2021
1.0.2 931 9/16/2021
1.0.1 1,008 9/16/2021
1.0.0 894 9/16/2021