question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

pip install insightface and https://insightface.ai

See original GitHub issue

are both online. Any suggestion is welcome! For pip source code, please refer to https://github.com/deepinsight/insightface/tree/master/python-package

2021.05.15 Update:

pip insightface-0.2.0 is ready now. Please update with pip install -U insightface

For insightface pip-package <= 0.1.5, we use MXNet as inference backend, please download all models from onedrive, and put them all under ~/.insightface/models/ directory.

Starting from insightface>=0.2, we use onnxruntime as inference backend, please download our antelope model release from onedrive, and put it under ~/.insightface/models/, so there’re onnx models at ~/.insightface/models/antelope/*.onnx.

The antelope model release contains ResNet100@Glint360K recognition model and SCRFD-10GF detection model. Please check deploy/test.py for detail.

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:12
  • Comments:20

github_iconTop GitHub Comments

1reaction
RomanSteinbergcommented, Sep 9, 2019

Hi,

  1. Relative imports is a bad style which can cause building errors. Consider
from ..model_zoo import model_zoo

replace with

from insightface.model_zoo import model_zoo
  1. You should check PEP8.
  2. There is no minimal example to run in README. It will also answer questions like @Talgin asked.
  3. There is a good practice called RAII. Your prepare methods contradict this idiom. Please, consider refactoring.
0reactions
huynhtruc0309commented, Apr 4, 2022

How to choose det_size in detection model retinaface? Please help @nttstar

Read more comments on GitHub >

github_iconTop Results From Across the Web

insightface - PyPI
insightface 0.7.2. pip install insightface. Copy PIP instructions. Latest version. Released: Dec 16, 2022.
Read more >
InsightFace: an open source 2D&3D deep face analysis library
InsightFace is an integrated Python library for 2D&3D face analysis. InsightFace efficiently implements a rich variety of state of the art algorithms of ......
Read more >
Building A Face Recognition System Using Scikit Learn In ...
More importantly, once you are done with pip installing insightface : – Download the antelope model release from onedrive. (It contains two pre- ......
Read more >
InsightFace** MXNet Model - Model Zoo
Train. Install MXNet with GPU support (Python 2.7). pip install mxnet-cu80. Clone the InsightFace ...
Read more >
insightface-paddle 2.0.0 on PyPI - Libraries.io
2.0.0 - a Python package on PyPI - Libraries.io. ... paddleinference; License: Apache-2.0; Install: pip install insightface-paddle==2.0.0 ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found