University coursework, a re-implementation of face recognition models in Matlab
-
MATLAB Toolboxes
-
Model Params
- MATLAB VGGFace Params - place it under
Weights\VGGFace\
for it to work
- MATLAB VGGFace Params - place it under
.
└── root/
├── Common/
│ ├── DatabaseFunctions/
│ ├── GeneralFunctions/
│ ├── lfw-details/
│ └── testLabel.mat
├── FaceDatabase/
│ ├── lfw-funneled/
│ ├── ...
│ ├── Train/
│ │ ├── example_subject_1/
│ │ └── example_subject_2/
│ └── Test/
├── Models/
├── Weights/
├── Screenshot/
├── Evaluation.m
├── EvaluationAll.m
├── GenerateROC.mlx
└── README.md
Common
includes all auxiliary functions for dataset manipulation and dlmodel functions
lfw-details
extracted text files from LFW Dataset
testLabel.mat
true label values for prepared train and test set
FaceDatabase
image dataset dump
Models
contain subfolders of essential model functions
Weights
contain subfolders of essential model pretrained parameters
Screenshot
screenshots
Evaluation.m
main script
EvaluationAll.m
extra main script
GenerateROC.mlx
ROC plot live script
Licensed under the MIT License.