├── README.md ├── classifier.py ├── data_preprocess.py ├── detect_face.py ├── face_recognition.py ├── facenet.py ├── npy ├── det1.npy ├── det2.npy └── det3.npy ├── preprocess.py └── train_main.py /README.md: -------------------------------------------------------------------------------- 1 | # Facenet_Tensorflow 2 | 3 | Instructions : https://youtu.be/a25Vr8mqmGc 4 | -------------------------------------------------------------------------------- /classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/classifier.py -------------------------------------------------------------------------------- /data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/data_preprocess.py -------------------------------------------------------------------------------- /detect_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/detect_face.py -------------------------------------------------------------------------------- /face_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/face_recognition.py -------------------------------------------------------------------------------- /facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/facenet.py -------------------------------------------------------------------------------- /npy/det1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/npy/det1.npy -------------------------------------------------------------------------------- /npy/det2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/npy/det2.npy -------------------------------------------------------------------------------- /npy/det3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/npy/det3.npy -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/preprocess.py -------------------------------------------------------------------------------- /train_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennford49/Facenet_Tensorflow/HEAD/train_main.py --------------------------------------------------------------------------------