Simple face detection and verification system
There is
.
├── face_recognize
│ ├── detector.py
│ ├── embedding.py
│ ├── __init__.py
│ └── __main__.py
├── LICENSE
├── README.md
├── requirements.txt
└── resources
└── weights
└── face_encoder.pt
Clone this repository to your local machine:
$ git clone https://github.com/zen0no/face_recognition.git
Then, create virtual enviroment and install dependecies
$ python3 -m venv .venv
$ source ./venv/bin/activate
$ pip install -r requierements.txt