English | 简体中文
Face feature models typically take standardized face images processed through detection, extraction, and keypoint correction as input. These models extract highly discriminative facial features from these images for subsequent modules, such as face matching and verification tasks.
❗ Before quick integration, please install the PaddleX wheel package. For details, refer to the PaddleX Local Installation Tutorial
After installing the whl package, a few lines of code can complete the inference of the face feature module. You can switch models under this module freely, and you can also integrate the model inference of the face feature module into your project. Before running the following code, please download the example image to your local machine.
from paddlex import create_model
model_name = "MobileFaceNet"
model = create_model(model_name)
output = model.predict("face_recognition_001.jpg", batch_size=1)
for res in output:
res.print(json_format=False)
res.save_to_json("./output/res.json")
For more information on using the PaddleX single-model inference API, refer to the PaddleX Single Model Python Script Usage Instructions.
If you aim for higher accuracy with existing models, you can leverage PaddleX's custom development capabilities to develop better face feature models. Before developing face feature models with PaddleX, ensure you have installed the PaddleX PaddleClas plugin. The installation process can be found in the PaddleX Local Installation Tutorial
Before model training, you need to prepare the dataset for the corresponding task module. PaddleX provides data validation functionality for each module, and only data that passes validation can be used for model training. Additionally, PaddleX provides demo datasets for each module, allowing you to complete subsequent development based on the official demo data. If you wish to use a private dataset for subsequent model training, the training dataset for the face feature module is organized in a general image classification dataset format. You can refer to the PaddleX Image Classification Task Module Data Annotation Tutorial. If you wish to use a private dataset for subsequent model evaluation, note that the validation dataset format for the face feature module differs from the training dataset format. Please refer to Section 4.1.4 Data Organization Face Feature Module
You can use the following commands to download the demo dataset to a specified folder:
cd /path/to/paddlex
wget https://paddle-model-ecology.bj.bcebos.com/paddlex/data/face_rec_examples.tar -P ./dataset
tar -xf ./dataset/face_rec_examples.tar -C ./dataset/
A single command can complete data validation:
python main.py -c paddlex/configs/face_recognition/MobileFaceNet.yaml \
-o Global.mode=check_dataset \
-o Global.dataset_dir=./dataset/face_rec_examples
After executing the above command, PaddleX will validate the dataset and collect its basic information. Upon successful execution, the log will print the message Check dataset passed !. The validation result file will be saved in ./output/check_dataset_result.json, and related outputs will be saved in the ./output/check_dataset directory of the current directory. The output directory includes visualized example images and histograms of sample distributions.
After completing the data validation, you can convert the dataset format and re-split the training/validation ratio by modifying the configuration file or adding hyperparameters.
The format of the validation dataset for the face feature module differs from the training dataset. If you need to evaluate model accuracy on private data, please organize your dataset as follows:
face_rec_dataroot # Root directory of the dataset, the directory name can be changed
├── train # Directory for saving the training dataset, the directory name cannot be changed
├── images # Directory for saving images, the directory name can be changed but should correspond to the content in label.txt
├── xxx.jpg # Face image file
├── xxx.jpg # Face image file
...
└──label.txt # Training set annotation file, the file name cannot be changed. Each line gives the relative path of the image to `train` and the face image class (face identity) id, separated by a space. Example content: images/image_06765.jpg 0
├── val # Directory for saving the validation dataset, the directory name cannot be changed
├── images # Directory for saving images, the directory name can be changed but should correspond to the content in pair_label.txt
├── xxx.jpg # Face image file
├── xxx.jpg # Face image file
...
└── pair_label.txt # Validation dataset annotation file, the file name cannot be changed. Each line gives the paths of two images to be compared and a 0 or 1 label indicating whether the pair of images belong to the same person, separated by spaces.
Example content of the validation set annotation file pair_label.txt:
# Face image 1.jpg Face image 2.jpg Label (0 indicates the two face images do not belong to the same person, 1 indicates they do)
images/Angela_Merkel_0001.jpg images/Angela_Merkel_0002.jpg 1
images/Bruce_Gebhardt_0001.jpg images/Masao_Azuma_0001.jpg 0
images/Francis_Ford_Coppola_0001.jpg images/Francis_Ford_Coppola_0002.jpg 1
images/Jason_Kidd_0006.jpg images/Jason_Kidd_0008.jpg 1
images/Miyako_Miyazaki_0002.jpg images/Munir_Akram_0002.jpg 0
Model training can be completed with a single command. Here is an example of training MobileFaceNet:
python main.py -c paddlex/configs/face_recognition/MobileFaceNet.yaml \
-o Global.mode=train \
-o Global.dataset_dir=./dataset/face_rec_examples
The steps required are:
.yaml configuration file for the model (here it is MobileFaceNet.yaml)-o Global.mode=train-o Global.dataset_dir
Other related parameters can be set by modifying the Global and Train fields in the .yaml configuration file or by appending parameters in the command line. For example, to specify the first two GPUs for training: -o Global.device=gpu:0,1; to set the number of training epochs to 10: -o Train.epochs_iters=10. For more modifiable parameters and their detailed explanations, refer to the configuration file instructions for the corresponding task module PaddleX Common Configuration Parameters for Model Tasks.After completing model training and evaluation, you can use the trained model weights for inference predictions. In PaddleX, model inference predictions can be implemented through two methods: command line and wheel package.
To perform inference predictions through the command line, you only need the following command. Before running the following code, please download the example image to your local machine.
python main.py -c paddlex/configs/face_recognition/MobileFaceNet.yaml \
-o Global.mode=predict \
-o Predict.model_dir="./output/best_model/inference" \
-o Predict.input="face_recognition_001.jpg"
Similar to model training and evaluation, the following steps are required:
Specify the path to the model's .yaml configuration file (here it is MobileFaceNet.yaml)
Specify the mode as model inference prediction: -o Global.mode=predict
Specify the path to the model weights: -o Predict.model_dir="./output/best_model/inference"
Specify the path to the input data: -o Predict.input="..."
Other related parameters can be set by modifying the fields under Global and Predict in the .yaml configuration file. For details, please refer to PaddleX Common Model Configuration File Parameter Description.
The model can be directly integrated into the PaddleX pipeline or into your own project.
The face feature module can be integrated into the PaddleX pipeline for Face Recognition. You only need to replace the model path to update the face feature module of the relevant pipeline. In pipeline integration, you can use high-performance deployment and service-oriented deployment to deploy the model you obtained.
The weights you produced can be directly integrated into the face feature module. You can refer to the Python example code in Quick Integration and only need to replace the model with the path to the model you trained.