├── LICENSE ├── README.md ├── __pycache__ ├── a ├── image_utils.cpython-36.pyc └── model.cpython-36.pyc ├── cache2.py ├── comp.py ├── data ├── a └── open_nsfw-weights.npy ├── dataSet ├── User.2.1.jpg ├── User.2.10.jpg ├── User.2.11.jpg ├── User.2.12.jpg ├── User.2.13.jpg ├── User.2.14.jpg ├── User.2.15.jpg ├── User.2.16.jpg ├── User.2.17.jpg ├── User.2.18.jpg ├── User.2.19.jpg ├── User.2.2.jpg ├── User.2.20.jpg ├── User.2.21.jpg ├── User.2.3.jpg ├── User.2.4.jpg ├── User.2.5.jpg ├── User.2.6.jpg ├── User.2.7.jpg ├── User.2.8.jpg └── User.2.9.jpg ├── dataset.py ├── dataset_from_pictures ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 18.jpg ├── 19.jpg ├── 2.jpg ├── 20.jpg ├── 21.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg ├── User.2.1.jpg ├── User.2.10.jpg ├── User.2.11.jpg ├── User.2.12.jpg ├── User.2.13.jpg ├── User.2.14.jpg ├── User.2.15.jpg ├── User.2.16.jpg ├── User.2.17.jpg ├── User.2.18.jpg ├── User.2.19.jpg ├── User.2.2.jpg ├── User.2.20.jpg ├── User.2.3.jpg ├── User.2.4.jpg ├── User.2.5.jpg ├── User.2.6.jpg ├── User.2.7.jpg ├── User.2.8.jpg ├── User.2.9.jpg ├── client.py ├── cut.py ├── download.py ├── haarcascade_frontalface_default.xml └── pic.py ├── haarcascade_eye.xml ├── haarcascade_frontalface_default.xml ├── image_utils.py ├── model.py ├── nsfw.py ├── ser.py ├── testing.txt ├── text.txt ├── tools ├── a ├── create_predict_request.py ├── export_graph.py └── export_savedmodel.py ├── trainner.py └── trainner └── trainner.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__pycache__/image_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/__pycache__/image_utils.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /cache2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/cache2.py -------------------------------------------------------------------------------- /comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/comp.py -------------------------------------------------------------------------------- /data/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/open_nsfw-weights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/data/open_nsfw-weights.npy -------------------------------------------------------------------------------- /dataSet/User.2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.1.jpg -------------------------------------------------------------------------------- /dataSet/User.2.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.10.jpg -------------------------------------------------------------------------------- /dataSet/User.2.11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.11.jpg -------------------------------------------------------------------------------- /dataSet/User.2.12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.12.jpg -------------------------------------------------------------------------------- /dataSet/User.2.13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.13.jpg -------------------------------------------------------------------------------- /dataSet/User.2.14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.14.jpg -------------------------------------------------------------------------------- /dataSet/User.2.15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.15.jpg -------------------------------------------------------------------------------- /dataSet/User.2.16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.16.jpg -------------------------------------------------------------------------------- /dataSet/User.2.17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.17.jpg -------------------------------------------------------------------------------- /dataSet/User.2.18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.18.jpg -------------------------------------------------------------------------------- /dataSet/User.2.19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.19.jpg -------------------------------------------------------------------------------- /dataSet/User.2.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.2.jpg -------------------------------------------------------------------------------- /dataSet/User.2.20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.20.jpg -------------------------------------------------------------------------------- /dataSet/User.2.21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.21.jpg -------------------------------------------------------------------------------- /dataSet/User.2.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.3.jpg -------------------------------------------------------------------------------- /dataSet/User.2.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.4.jpg -------------------------------------------------------------------------------- /dataSet/User.2.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.5.jpg -------------------------------------------------------------------------------- /dataSet/User.2.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.6.jpg -------------------------------------------------------------------------------- /dataSet/User.2.7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.7.jpg -------------------------------------------------------------------------------- /dataSet/User.2.8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.8.jpg -------------------------------------------------------------------------------- /dataSet/User.2.9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataSet/User.2.9.jpg -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset.py -------------------------------------------------------------------------------- /dataset_from_pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/1.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/10.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/11.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/12.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/13.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/14.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/15.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/16.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/17.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/18.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/19.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/2.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/20.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/21.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/3.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/4.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/5.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/6.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/7.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/8.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/9.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.1.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.10.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.11.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.12.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.13.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.14.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.15.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.16.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.17.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.18.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.19.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.2.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.20.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.3.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.4.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.5.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.6.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.7.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.8.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/User.2.9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/User.2.9.jpg -------------------------------------------------------------------------------- /dataset_from_pictures/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/client.py -------------------------------------------------------------------------------- /dataset_from_pictures/cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/cut.py -------------------------------------------------------------------------------- /dataset_from_pictures/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/download.py -------------------------------------------------------------------------------- /dataset_from_pictures/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /dataset_from_pictures/pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/dataset_from_pictures/pic.py -------------------------------------------------------------------------------- /haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/haarcascade_eye.xml -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/image_utils.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/model.py -------------------------------------------------------------------------------- /nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/nsfw.py -------------------------------------------------------------------------------- /ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/ser.py -------------------------------------------------------------------------------- /testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/testing.txt -------------------------------------------------------------------------------- /text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/text.txt -------------------------------------------------------------------------------- /tools/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/create_predict_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/tools/create_predict_request.py -------------------------------------------------------------------------------- /tools/export_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/tools/export_graph.py -------------------------------------------------------------------------------- /tools/export_savedmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/tools/export_savedmodel.py -------------------------------------------------------------------------------- /trainner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/trainner.py -------------------------------------------------------------------------------- /trainner/trainner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindrvs/nsfw_face/HEAD/trainner/trainner.yml --------------------------------------------------------------------------------