Jian
Jian
@skyneta We are planing new face detection methods. Maybe,training code is released with next version
Your pytorch is 1.10, our pytorch is 0.3. If you just want to do evaluation, add torch.set_grad_enabled(False) inside test_oneimage() function (at the beginning of the function).
A 3M model is provided by https://github.com/lijiannuist/lightDSFD
You can find lite DSFD by https://github.com/lijiannuist/lightDSFD
Hi, demo.py adopts ResNet152 backbone and multi-scale test, which consumes much GPU memory. You can try to use less image scales for inference. We will release a more fine model.
Hi Try to use with torch.no_grad(): to inference. You can refer to https://github.com/vlad3996/FaceDetection-DSFD
你好,DSFD的初衷是极致的人脸检测精度,因此注重使用更大的backbone和多尺度测试,这会导致速度变慢很多。
Preparing dataset with head bounding box label
of course! just try it!
Hi @AmitRozner Of course. But Training with smaller batch size may reduce detection performance slightly.