├── .gitignore ├── README.md ├── common ├── __init__.py ├── batch_reader.py ├── landmark_augment.py └── landmark_helper.py ├── testing ├── benchmark.py ├── predictor.py └── test.py └── training ├── models.py ├── record_result.txt ├── training.py └── training_sigle_gpu.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | */output_tmp 4 | *.swp 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/README.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/batch_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/common/batch_reader.py -------------------------------------------------------------------------------- /common/landmark_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/common/landmark_augment.py -------------------------------------------------------------------------------- /common/landmark_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/common/landmark_helper.py -------------------------------------------------------------------------------- /testing/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/testing/benchmark.py -------------------------------------------------------------------------------- /testing/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/testing/predictor.py -------------------------------------------------------------------------------- /testing/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/testing/test.py -------------------------------------------------------------------------------- /training/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/training/models.py -------------------------------------------------------------------------------- /training/record_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/training/record_result.txt -------------------------------------------------------------------------------- /training/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/training/training.py -------------------------------------------------------------------------------- /training/training_sigle_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLiu20/FacialLandmark_TF/HEAD/training/training_sigle_gpu.py --------------------------------------------------------------------------------