├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── data ├── .gitignore ├── fddb.py ├── fddb │ └── .gitignore └── fddb_label_map.pbtxt ├── images └── .gitignore ├── requirements.txt ├── run_cloudml.sh ├── run_local.sh ├── scripts └── visualize_result.py ├── ssd_inception_v2_fddb.config.base └── train └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/fddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/data/fddb.py -------------------------------------------------------------------------------- /data/fddb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/data/fddb/.gitignore -------------------------------------------------------------------------------- /data/fddb_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/data/fddb_label_map.pbtxt -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpg 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_cloudml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/run_cloudml.sh -------------------------------------------------------------------------------- /run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/run_local.sh -------------------------------------------------------------------------------- /scripts/visualize_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/scripts/visualize_result.py -------------------------------------------------------------------------------- /ssd_inception_v2_fddb.config.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/tf-face-detector/HEAD/ssd_inception_v2_fddb.config.base -------------------------------------------------------------------------------- /train/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | --------------------------------------------------------------------------------