Can you provide your training logs? #347
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Your training logs can be very helpful for re-implementing SimSwap on other training datasets.
We really need these logs for reference.
Thank you!
You said 'Using insightface with different versions is not recommanded. Please use this specific version.'
Can you explain more detailedly why?
What will happen if I use other versions of face recognition model?
To be honest, it is quite possible to use the latest version of insightface (0.6.2), but for this you need to edit the code a bit. I am not the developer of this repository, I just made an adaptation to work with the latest version of insightface some time ago.
First you need to uninsall old insightface by
pip uninstall -y insightfaceand install latest bypip install insightface==0.6.2and replaceinsightface_func/face_detect_crop_multi.pywith this one.Next, you need to replace
insightface_func/face_detect_crop_single.pywith this one.And finally, wherever there is
app = Face_detect_crop(name='antelope', root='./insightface_func/models')Replace with this:
app = Face_detect_crop(name='antelope', root='./insightface_func', allowed_modules=['detection'], providers=['CUDAExecutionProvider', 'CPUExecutionProvider'])It also makes it possible to use
antelopev2,buffalo_l, etc. instead ofantelope. inFace_detect_crop. But accordingly, you need to download them and unzip them into the./insightface_funcfolder.Or you can try to just change the
antelopeto what you need and, in theory, the model itself should download.But now it looks like they have problems with the server and therefore you will need to download and unpack it yourself.
Looks like the automatic download for

buffalo_lis working now!)By the way, I noticed that
buffalo_landbuffalo_scgive a slightly different output.buffalo_l(result almost same as defaultantelope):and

buffalo_sc(very lightweight version ofbuffalo_l, 16MB vs 326MB ofbuffalo_l):