From 118e6157245f193da5032d6af3964b4a6685a1da Mon Sep 17 00:00:00 2001 From: torzdf <36920800+torzdf@users.noreply.github.com> Date: Sat, 6 Apr 2024 16:53:12 +0100 Subject: [PATCH] bugfix: tests - change -it switch to -i --- tests/simple_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simple_tests.py b/tests/simple_tests.py index e406def93c..0e6ea127d5 100644 --- a/tests/simple_tests.py +++ b/tests/simple_tests.py @@ -94,7 +94,7 @@ def train_args(model, model_path, faces, iterations=1, batchsize=2, extra_args=" """ Train command """ py_exe = sys.executable args = (f"{py_exe} faceswap.py train -A {faces} -B {faces} -m {model_path} -t {model} " - f"-b {batchsize} -it {iterations} {extra_args}") + f"-b {batchsize} -i {iterations} {extra_args}") return args.split()