├── .gitignore ├── README.md ├── baseline_model_v0.ipynb ├── baseline_model_v1-resized-images.ipynb ├── crawlers ├── README.md ├── __init__.py └── lanvshen │ ├── __init__.py │ ├── album_mng.py │ ├── download_album.py │ └── runner.py ├── learning-with-noisy-lable-v0.ipynb ├── tools └── resize_images.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/README.md -------------------------------------------------------------------------------- /baseline_model_v0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/baseline_model_v0.ipynb -------------------------------------------------------------------------------- /baseline_model_v1-resized-images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/baseline_model_v1-resized-images.ipynb -------------------------------------------------------------------------------- /crawlers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/crawlers/README.md -------------------------------------------------------------------------------- /crawlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawlers/lanvshen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawlers/lanvshen/album_mng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/crawlers/lanvshen/album_mng.py -------------------------------------------------------------------------------- /crawlers/lanvshen/download_album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/crawlers/lanvshen/download_album.py -------------------------------------------------------------------------------- /crawlers/lanvshen/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/crawlers/lanvshen/runner.py -------------------------------------------------------------------------------- /learning-with-noisy-lable-v0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/learning-with-noisy-lable-v0.ipynb -------------------------------------------------------------------------------- /tools/resize_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/tools/resize_images.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackonYang/porn-hot-classification/HEAD/tox.ini --------------------------------------------------------------------------------