You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
facexlib loads weights into a relative directory instead of the directory containing the .py file. To fix this easily, in the gfpgan/utils.py file during the constructor call:
facexlib loads weights into a relative directory instead of the directory containing the .py file. To fix this easily, in the
gfpgan/utils.py
file during the constructor call:Replace model_rootpath='gfpgan/weights' with os.path.join(ROOT_DIR, 'gfpgan/weights').
The text was updated successfully, but these errors were encountered: