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
[x] I confirm that I have read the Troubleshoot guide before making this issue.
Describe the problem
When you try to target a face index that is greater than the actual number of faces detected, This is very easy to replicate. If you are swapping an image with x numbers of faces, in " Target Image Index " set it to a number greater than x.
Proposal: This should instead skip and move on to the next task rather than throwing an error and halting.
Full Console Log
Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}
inswapper-shape: [1, 3, 128, 128]
Source faces: 1
Target faces: 2
Replacing specific face(s) in the target image with specific face(s) from the source image
Traceback (most recent call last):
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\async_worker.py", line 860, in worker
handler(task)
File "C:\Fooocus inswapper\Fooocus-inswapper\venv\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "C:\Fooocus inswapper\Fooocus-inswapper\venv\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\async_worker.py", line 812, in handler
imgs = perform_face_swap(imgs, inswapper_source_image, inswapper_target_image_index)
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\face_swap.py", line 14, in perform_face_swap
result_image = process([source_image], item, "-1", f"{int(inswapper_target_image_index)}", "../inswapper/checkpoints/inswapper_128.onnx")
File "C:\Fooocus inswapper\Fooocus-inswapper\inswapper\swapper.py", line 179, in process
raise ValueError(f"Target index {target_index} is higher than the number of faces in the target image")
ValueError: Target index 2 is higher than the number of faces in the target image
The text was updated successfully, but these errors were encountered:
Read Troubleshoot
[x] I confirm that I have read the Troubleshoot guide before making this issue.
Describe the problem
When you try to target a face index that is greater than the actual number of faces detected, This is very easy to replicate. If you are swapping an image with x numbers of faces, in " Target Image Index " set it to a number greater than x.
Proposal: This should instead skip and move on to the next task rather than throwing an error and halting.
Full Console Log
Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}
inswapper-shape: [1, 3, 128, 128]
Source faces: 1
Target faces: 2
Replacing specific face(s) in the target image with specific face(s) from the source image
Traceback (most recent call last):
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\async_worker.py", line 860, in worker
handler(task)
File "C:\Fooocus inswapper\Fooocus-inswapper\venv\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "C:\Fooocus inswapper\Fooocus-inswapper\venv\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\async_worker.py", line 812, in handler
imgs = perform_face_swap(imgs, inswapper_source_image, inswapper_target_image_index)
File "C:\Fooocus inswapper\Fooocus-inswapper\modules\face_swap.py", line 14, in perform_face_swap
result_image = process([source_image], item, "-1", f"{int(inswapper_target_image_index)}", "../inswapper/checkpoints/inswapper_128.onnx")
File "C:\Fooocus inswapper\Fooocus-inswapper\inswapper\swapper.py", line 179, in process
raise ValueError(f"Target index {target_index} is higher than the number of faces in the target image")
ValueError: Target index 2 is higher than the number of faces in the target image
The text was updated successfully, but these errors were encountered: