FBNet ====== .. note:: This one-shot NAS is still implemented under NNI NAS 1.0, and will `be migrated to Retiarii framework in v2.4 `__. For the mobile application of facial landmark, based on the basic architecture of PFLD model, we have applied the FBNet (Block-wise DNAS) to design an concise model with the trade-off between latency and accuracy. References are listed as below: * `FBNet: Hardware-Aware Efficient ConvNet Design via Differentiable Neural Architecture Search `__ * `PFLD: A Practical Facial Landmark Detector `__ FBNet is a block-wise differentiable NAS method (Block-wise DNAS), where the best candidate building blocks can be chosen by using Gumbel Softmax random sampling and differentiable training. At each layer (or stage) to be searched, the diverse candidate blocks are side by side planned (just like the effectiveness of structural re-parameterization), leading to sufficient pre-training of the supernet. The pre-trained supernet is further sampled for finetuning of the subnet, to achieve better performance. .. image:: ../../img/fbnet.png :target: ../../img/fbnet.png :alt: PFLD is a lightweight facial landmark model for realtime application. The architecture of PLFD is firstly simplified for acceleration, by using the stem block of PeleeNet, average pooling with depthwise convolution and eSE module. To achieve better trade-off between latency and accuracy, the FBNet is further applied on the simplified PFLD for searching the best block at each specific layer. The search space is based on the FBNet space, and optimized for mobile deployment by using the average pooling with depthwise convolution and eSE module etc. Experiments ------------ To verify the effectiveness of FBNet applied on PFLD, we choose the open source dataset with 106 landmark points as the benchmark: * `Grand Challenge of 106-Point Facial Landmark Localization `__ The baseline model is denoted as MobileNet-V3 PFLD (`Reference baseline `__), and the searched model is denoted as Subnet. The experimental results are listed as below, where the latency is tested on Qualcomm 625 CPU (ARMv8): .. list-table:: :header-rows: 1 :widths: auto * - Model - Size - Latency - Validation NME * - MobileNet-V3 PFLD - 1.01MB - 10ms - 6.22% * - Subnet - 693KB - 1.60ms - 5.58% Example -------- `Example code `__ Please run the following scripts at the example directory. The Python dependencies used here are listed as below: .. code-block:: bash numpy==1.18.5 opencv-python==4.5.1.48 torch==1.6.0 torchvision==0.7.0 onnx==1.8.1 onnx-simplifier==0.3.5 onnxruntime==1.7.0 Data Preparation ----------------- Firstly, you should download the dataset `106points dataset `__ to the path ``./data/106points`` . The dataset includes the train-set and test-set: .. code-block:: bash ./data/106points/train_data/imgs ./data/106points/train_data/list.txt ./data/106points/test_data/imgs ./data/106points/test_data/list.txt Quik Start ----------- 1. Search ^^^^^^^^^^ Based on the architecture of simplified PFLD, the setting of multi-stage search space and hyper-parameters for searching should be firstly configured to construct the supernet, as an example: .. code-block:: bash from lib.builder import search_space from lib.ops import PRIMITIVES from lib.supernet import PFLDInference, AuxiliaryNet from nni.algorithms.nas.pytorch.fbnet import LookUpTable, NASConfig, # configuration of hyper-parameters # search_space defines the multi-stage search space nas_config = NASConfig( model_dir="./ckpt_save", nas_lr=0.01, mode="mul", alpha=0.25, beta=0.6, search_space=search_space, ) # lookup table to manage the information lookup_table = LookUpTable(config=nas_config, primitives=PRIMITIVES) # created supernet pfld_backbone = PFLDInference(lookup_table) After creation of the supernet with the specification of search space and hyper-parameters, we can run below command to start searching and training of the supernet: .. code-block:: bash python train.py --dev_id "0,1" --snapshot "./ckpt_save" --data_root "./data/106points" The validation accuracy will be shown during training, and the model with best accuracy will be saved as ``./ckpt_save/supernet/checkpoint_best.pth``. 2. Finetune ^^^^^^^^^^^^ After pre-training of the supernet, we can run below command to sample the subnet and conduct the finetuning: .. code-block:: bash python retrain.py --dev_id "0,1" --snapshot "./ckpt_save" --data_root "./data/106points" \ --supernet "./ckpt_save/supernet/checkpoint_best.pth" The validation accuracy will be shown during training, and the model with best accuracy will be saved as ``./ckpt_save/subnet/checkpoint_best.pth``. 3. Export ^^^^^^^^^^ After the finetuning of subnet, we can run below command to export the ONNX model: .. code-block:: bash python export.py --supernet "./ckpt_save/supernet/checkpoint_best.pth" \ --resume "./ckpt_save/subnet/checkpoint_best.pth" ONNX model is saved as ``./output/subnet.onnx``, which can be further converted to the mobile inference engine by using `MNN `__ . The checkpoints of pre-trained supernet and subnet are offered as below: * `Supernet `__ * `Subnet `__ * `ONNX model `__