-
Hi,Thanks for your great work.
I transform the model from pytorch(.pth) to libtorch(.pt).
When I load the model with libtorch in c++, and then get the error:
terminate called after throwing an in…
-
trying to load the weight from checkpoint and save entire model as ".savedmodel" format. Here is my code:
```
cfg_path = os.path.join(os.path.dirname(__file__), 'configs/retinaface_res50.yaml')
che…
-
Hello,
Thank you for sharing this work as a PyPI package!
I have questions about default parameter values.
https://github.com/ternaus/retinaface/blob/29611c722ad400eed977b2df1816ddf914dbb2bf/…
-
Thanks for your working! I downloaded ms1m-retinaface training data from the link you shared.I saw your datasets.py required separate image files to open but there is no such file in ms1m-retinaface-t…
-
Hi,
which face detector is used in buffalo_l model zoo in insightface 0.5 (file name: det_10g.onnx)? Is it retinaface or SCRFD?
These sources suggest SCRFD:
https://github.com/deepinsight/insig…
-
testing below:
import cv2
from fdet import io, RetinaFace
BATCH_SIZE = 1000
detector = RetinaFace(backbone='MOBILENET', cuda_devices=[0,1,2,3])
vid_cap = cv2.VideoCapture('13.mp4')
video_face_de…
-
Hello,
I got an error in insightface package of retinaFace.
```
import insightface
model = insightface.model_zoo.get_model('retinaface_r50_v1')
model.prepare(ctx_id=-1, nms=0.4)
```
erro…
-
你好,我用你的方法把RetinaFace mnet.25模型转换为onnx格式,然后载入TensorRT,但parseFromFile()调用失败了,TRT库有报告如下的信息:
TensorRT_WARNING: onnx2trt_utils.cpp:220: Your ONNX model has been generated with INT64 weights, while Tenso…
-
![image](https://user-images.githubusercontent.com/24749356/77297561-7062e100-6d24-11ea-800c-daebd7b3f2a5.png)
I converted my retinaface model from mxnet to onnx it is ok ,but for mxnet converted …
-
bboxes = det_net.batched_detect_faces(batch_frames, conf_threshold=0.8, nms_threshold=0.15, use_origin_size=False)
File "python3.10/site-packages/facexlib/detection/retinaface.py", line 320, in…