SthPhoenix

Results 136 comments of SthPhoenix
trafficstars

Hi @czzbb ! My config was based on `scrfd_2.5g_bnkps.py` modified according to my previous post.

> Hi, I can't reproduce the official results(I just got 62.4, while it should be 77 ap). So I wonder is there anything I ignore. I download the datasets and...

> Then i change to scrfd_34g_gnkps, it works, but GN not supported by tensorRT(@SthPhoenix can you tell me how to transform GN onnx models to RT models?) In TensorRT you...

UPD: Found it, would try it later, thanks! Hi! Can you share ONNX to TRT conversion example? I was able to convert model to TRT, but outputs are of completely...

> Hi, > > I used 640x640 scrfd_10g_kps.onnx . it gives time to time false positives as I attached. > > yours scrfd is scrfd_10g_gnkps.onnx and dynamic heightxweight. > >...

This error seems to be a result of some driver misconfiguration\mismatch. I haven't tested this repo on Ubuntu prior to 20.04, so I can't guarantee it would work.

Hi! I haven't tested it in swarm, but this error usually means that you are missing protocol during request, so try just calling api by full address like http://insightface:18080/extract Also...

That's was unexpected, but thanks! )))

Hi! Hope this extended example would help you: ```python import cv2 from modules.model_zoo.getter import get_model from modules.imagedata import resize_image def draw_faces(image, bboxes, landmarks, scores, draw_landmarks=True, draw_scores=True, draw_sizes=True): for i, bbox...

Hi! For full pipeline you can refer to `api_trt/modules/face_model.py`, its `get()` method accepts list of images and runs full `face detection >> face alignment >> feature extraction` pipeline.