-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install insightface and https://insightface.ai #891
Comments
Hi, @nttstar Regards, |
@Talgin We should call prepare() first then we will have self.model var. |
Oh, sorry, I see it now 👍 |
please add from future import division in your face_detection.py or you will get an issue when you change scaling call in your tutorial example when you want to resize the image cause cv2 is missing. bboxes, landmark = model.detect(img, threshold=0.5, scale=0.5) |
Hi,
replace with
|
@nttstar I installed your package and ran the following code:
The comment in this code describes the problem I found. I created an issue #899 which can give you more information about this problem. |
@RomanSteinberg Quite strange. It should always output 1(male). What if put |
@nttstar it outputs 1 |
off topic: @nttstar |
Hi @nttstar, Thank you for your work. While using FaceAnalysis, we met the issue where the program was unsuccessful in loading the model and fall in a loop with the following message:
We also got the same issue when using the detection (retina) and recogntion together, event the detection and the recogntion was executed on different GPU. Updated: the issues was fixed by increasing timeout value while loading model |
hi,dear, thx |
Hi :
|
Could you please provide more details on how you set the timeout ? |
We have deployed the model with Docker, so we just increased the timeout value of Docker. |
In python2.7, pip install insightface, found it dependency networkx2.3, which need python3.5+, how to resolve it? Error Stack: ... .... Using cached https://mirrors.aliyun.com/pypi/packages/ea/0b/189cd3c19faf362ff2df5f301456c6cf8571ef6684644cfdfdbff293825c/cloudpickle-1.3.0-py2.py3-none-any.whl (26 kB) |
Later I change to python3.5 resolve it. I think we should tell user in insightface.ai and modify the introduce in the READ.ME in github, for thru it just get MXNET only support python 2.7. @nttstar |
pip insightface-0.2.0 is ready now, please check the top post. |
plz how can i test recognition ?? |
How to choose det_size in detection model retinaface? Please help @nttstar |
In my case, on windows 11, cause of git bash shell. |
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
andSCRFD-10GF detection model
. Please checkdeploy/test.py
for detail.The text was updated successfully, but these errors were encountered: