https://github.com/carlosfrodrigues/helmut
Nudity detection neural network built with TensorFlow
https://github.com/carlosfrodrigues/helmut
nudity-detector tensorflow
Last synced: 2 months ago
JSON representation
Nudity detection neural network built with TensorFlow
- Host: GitHub
- URL: https://github.com/carlosfrodrigues/helmut
- Owner: carlosfrodrigues
- Created: 2020-02-16T19:33:20.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T18:42:33.000Z (about 3 years ago)
- Last Synced: 2024-04-15T15:20:39.997Z (about 2 years ago)
- Topics: nudity-detector, tensorflow
- Language: Python
- Homepage:
- Size: 75.4 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Helmut
Nudity detection neural network built with TensorFlow. I used 250 images for the training set, I gave the name in honor of the photographer [Helmut Newton](https://pt.wikipedia.org/wiki/Helmut_Newton)
## How to run:
```
python helmut.py [imagepath]
```
Or instead you can run the server:
```
python server.py
```
and give a POST request to it
```
curl -F "file=@[imagepath]" http://127.0.0.1:5000/
```
It will return a json like that:
{"notnude": 0.9963597655296326, "nude": 0.003640185110270977}