We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
您好,碰到一个bug。我不使用ui界面,直接用运行脚本就会报错:
“ #!/usr/bin/env python3 import os import sys from modules import core os.environ["CUDA_VISIBLE_DEVICES"] = "1" #模拟命令行参数,添加--execution-provider cuda sys.argv += ["--execution-provider", "cuda"] sys.argv += ["-s", "input/images/picture1.png", "-t", "input/videos/real_001.mp4", "-o", "output/output03.mp4"] #choices=['face_swapper', 'face_enhancer'] sys.argv += ["--frame-processor", "face_swapper"] if name == 'main': print(" ===============> 开始run ") core.run() ”
“ #!/usr/bin/env python3 import os import sys from modules import core os.environ["CUDA_VISIBLE_DEVICES"] = "1"
#模拟命令行参数,添加--execution-provider cuda sys.argv += ["--execution-provider", "cuda"] sys.argv += ["-s", "input/images/picture1.png", "-t", "input/videos/real_001.mp4", "-o", "output/output03.mp4"] #choices=['face_swapper', 'face_enhancer'] sys.argv += ["--frame-processor", "face_swapper"]
if name == 'main': print(" ===============> 开始run ") core.run() ”
如果--frame-processor选择“sys.argv += ["--frame-processor", "face_swapper"]”是可以正常执行。 如果--frame-processor变成模式sys.argv += ["--frame-processor", "face_enhancer"]。就会报错!
但是如果使用ui界面来处理,打开face_enhancer模式就能正常运行。想问是什么原因呢?
The text was updated successfully, but these errors were encountered:
AUTOMATIC1111/stable-diffusion-webui#13985 (if you use windows, use my fork and solve in this issue) and my small fix in #773 (of you use only linux)
Sorry, something went wrong.
No branches or pull requests
您好,碰到一个bug。我不使用ui界面,直接用运行脚本就会报错:
------------------------ run.py文件 ------------------------
------------------------ issues ------------------------
如果--frame-processor选择“sys.argv += ["--frame-processor", "face_swapper"]”是可以正常执行。
如果--frame-processor变成模式sys.argv += ["--frame-processor", "face_enhancer"]。就会报错!
但是如果使用ui界面来处理,打开face_enhancer模式就能正常运行。想问是什么原因呢?
The text was updated successfully, but these errors were encountered: