insightface icon indicating copy to clipboard operation
insightface copied to clipboard

State-of-the-art 2D and 3D Face Analysis Project

Results 521 insightface issues
Sort by recently updated
recently updated
newest added

- I have researched some marginal softmax as a head of Face recognition model. There are variable architectures such as ArcFace, CosFace, AdaCos ... Most of the heads based on...

My experiment is lauched with information - GPU: 2 - Model: IResNet50 - Pretrained: No - Marginal softmax: ArcFace (s=30, m=0.5), do not use partial_fc - Batchsize : 64*2=128 -...

i can't fin https://github.com/deepinsight/insightface/blob/master/recognition/tools/cpp-align/FacePreprocess.h

I tried SwinTransformer with partialfc, the 'embed_dim' of swintransformer is set to 96 and embedding_size of partialfc is set to 512. The img_size is 224*224.

Which algorithm was used to align the WebFaces42M dataset? Any script of reference to follow? Thanks in advance.

could author add adaface loss to your insightface? adaface code: https://github.com/mk-minchul/AdaFace/blob/master/head.py

hello, newbie here trying to install insightface locally. I keep getting "python setup.py bdist_wheel did not run successfully." I am using: Windows 10 Python: 3.10.4 If you have seen this...

Hi, I found some engineering tricks in your ViT backbone code([ViT](https://github.com/deepinsight/insightface/blob/master/recognition/arcface_torch/backbones/vit.py)). in Attention Module ![image](https://user-images.githubusercontent.com/94514604/169200241-ad7ca3ce-a06c-4230-816c-4d205d448df2.png) in Block Module ![image](https://user-images.githubusercontent.com/94514604/169200310-eaceab77-3dd0-4d37-b33d-2a266916c2ea.png) in forward_features of ViT ![image](https://user-images.githubusercontent.com/94514604/169200392-2f8aa8fd-2561-4783-9586-b648929f642e.png) Could you explain the reason of...

Hi I'm looking to do some unsupervised face clustering with the face vectors produced by insightface. I have trained on a custom dataset (ms1m + 10,000 of my own images)...