REST-powered microservice for analyzing media and returning NSFW scores. The repository also contains a client to perform requests to the service.
It is important to notice that this service provides no support for authentication or caching. It is also completely stateless, making it ideal to be used in the backend. A possible "frontend" implementation can be found in Analysis API.
- Image endpoint:
<bind-address>/nsfw/image
- Video endpoint:
<bind-address>/nsfw/video
- Health check:
<bind-address>/healthy
The data returned by the server is in the form:
type Analysis struct {
Fingerprint FingerprintResponse
NSFW NSFWResponse
FingerprintErrorString string
NSFWErrorString string
}
The client trims off the unnecessary data and returns:
type NSFWResponse struct {
IsNSFW bool
Confidence float64
Label string
}
- Service bind address and port:
NSFW_BIND_ADDRESS
(defaults tolocalhost:10001
). - Path to configuration file:
NSFW_CFG_PATH
(defaults toconfig.toml
). - Recognition service to use:
NSFW_TYPE
. Currently supported values aret
(Tensorflow, default) andc
(Cloudmersive). - Max size for image files:
NSFW_MAX_IMAGE_SIZE
(defaults to10 << 20
, 10 MB). - Max size for video files:
NSFW_MAX_VIDEO_SIZE
(defaults to20 << 20
, 20 MB).
[cloudmersive]
apiendpoint = "https://api.cloudmersive.com/image/nsfw/classify"
apikey = <your-cloudmersive-api-key>
explicitthreshold = 70
racythreshold = 78
[tensorflow]
knowledgebasepath = <path-to-folder-containing-model>
hentaiThreshold = 0.90
pornThreshold = 0.81
sexyThreshold = 0.85
overallThreshold = 0.90