mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-13 10:42:59 +08:00
Fix input
This commit is contained in:
parent
28bbdb0031
commit
8136fbbb4a
@ -25,10 +25,10 @@ Step 1 — Generate prompt files (downloads images, writes JSONs, then exits):
|
|||||||
--comfyui-base-dir /path/to/ComfyUI \\
|
--comfyui-base-dir /path/to/ComfyUI \\
|
||||||
--num-requests 50
|
--num-requests 50
|
||||||
|
|
||||||
# Custom image/output dirs:
|
# Custom image/output dirs (input dir must be ComfyUI's input/ folder):
|
||||||
python3 benchmarks/benchmark_comfyui_serving.py \\
|
python3 benchmarks/benchmark_comfyui_serving.py \\
|
||||||
--generate-wan22-prompts \\
|
--generate-wan22-prompts \\
|
||||||
--wan22-input-dir /data/images \\
|
--wan22-input-dir /home/ubuntu/ComfyUI/input \\
|
||||||
--wan22-output-dir /data/prompts/wan22 \\
|
--wan22-output-dir /data/prompts/wan22 \\
|
||||||
--wan22-num-images 30 \\
|
--wan22-num-images 30 \\
|
||||||
--num-requests 50
|
--num-requests 50
|
||||||
@ -715,8 +715,8 @@ def parse_args() -> argparse.Namespace:
|
|||||||
p.add_argument(
|
p.add_argument(
|
||||||
"--wan22-input-dir",
|
"--wan22-input-dir",
|
||||||
type=Path,
|
type=Path,
|
||||||
default=Path("inputs"),
|
default=Path("input"),
|
||||||
help="Directory for benchmark input images (default: inputs/).",
|
help="Directory for benchmark input images. Must be ComfyUI's input/ folder so LoadImage can find them (default: input/).",
|
||||||
)
|
)
|
||||||
p.add_argument(
|
p.add_argument(
|
||||||
"--wan22-output-dir",
|
"--wan22-output-dir",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user