use correct settings for parser

This commit is contained in:
kblueleaf
2024-03-12 19:24:27 +08:00
committed by Kohaku-Blueleaf
parent 86399407b2
commit 53954a1e2e

View File

@@ -3089,8 +3089,7 @@ def add_training_arguments(parser: argparse.ArgumentParser, support_dreambooth:
) )
parser.add_argument( parser.add_argument(
"--noise_offset_random_strength", "--noise_offset_random_strength",
type=bool, action="store_true",
default=False,
help="use random strength between 0~noise_offset for noise offset. / noise offsetにおいて、0からnoise_offsetの間でランダムな強度を使用します。", help="use random strength between 0~noise_offset for noise offset. / noise offsetにおいて、0からnoise_offsetの間でランダムな強度を使用します。",
) )
parser.add_argument( parser.add_argument(
@@ -3108,8 +3107,7 @@ def add_training_arguments(parser: argparse.ArgumentParser, support_dreambooth:
) )
parser.add_argument( parser.add_argument(
"--ip_noise_gamma_random_strength", "--ip_noise_gamma_random_strength",
type=bool, action="store_true",
default=False,
help="Use random strength between 0~ip_noise_gamma for input perturbation noise." help="Use random strength between 0~ip_noise_gamma for input perturbation noise."
+ "/ input perturbation noiseにおいて、0からip_noise_gammaの間でランダムな強度を使用します。", + "/ input perturbation noiseにおいて、0からip_noise_gammaの間でランダムな強度を使用します。",
) )