We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b819f commit a8687f5Copy full SHA for a8687f5
train_network.py
@@ -1105,12 +1105,17 @@ def setup_parser() -> argparse.ArgumentParser:
1105
action="store_true",
1106
help="do not use fp16/bf16 VAE in mixed precision (use float VAE) / mixed precisionでも fp16/bf16 VAEを使わずfloat VAEを使う",
1107
)
1108
-
1109
parser.add_argument(
1110
- "--validation_ratio",
+ "--validation_seed",
+ type=int,
1111
+ default=None,
1112
+ help="Validation seed"
1113
+ )
1114
+ parser.add_argument(
1115
+ "--validation_split",
1116
type=float,
1117
default=0.0,
- help="Ratio for validation images out of the training dataset"
1118
+ help="Split for validation images out of the training dataset"
1119
1120
1121
return parser
0 commit comments