Merge pull request #507 from HkingAuditore/main

Added support for Perlin noise in Noise Offset
This commit is contained in:
Kohya S
2023-05-15 20:56:46 +09:00
committed by GitHub
3 changed files with 60 additions and 1 deletions

View File

@@ -2127,6 +2127,12 @@ def add_training_arguments(parser: argparse.ArgumentParser, support_dreambooth:
default=None,
help="enable multires noise with this number of iterations (if enabled, around 6-10 is recommended) / Multires noiseを有効にしてこのイテレーション数を設定する有効にする場合は6-10程度を推奨",
)
parser.add_argument(
"--perlin_noise",
type=int,
default=None,
help="enable perlin noise and set the octaves",
)
parser.add_argument(
"--multires_noise_discount",
type=float,