人脸检测论文:LFFD: A Light and Fast Face Detector for Edge Devices及其PyTorch实现

📅 2026/7/28 18:54:20
人脸检测论文:LFFD: A Light and Fast Face Detector for Edge Devices及其PyTorch实现
LFFD: A Light and Fast Face Detector for Edge Devices论文链接:https://arxiv.org/pdf/1904.10633.pdfPytorch代码: https://github.com/shanglianlm0525/PyTorch-NetworksPytorch代码import torch import torch.nn as nn def Conv1x1ReLU(in_channels,out_channels): return nn.Sequential( nn.Conv2d(in_channels=in_channels, out_channels=out_channels, kernel_size=1, stride=1), nn.ReLU6(inplace=True)