bugfix: tests - change -it switch to -i

This commit is contained in:
torzdf
2024-04-06 16:53:12 +01:00
parent b1caa03e3f
commit 118e615724

View File

@@ -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()