From 78685b9c5f2141c99a1478ff3f4d59c276828dd1 Mon Sep 17 00:00:00 2001 From: rockerBOO Date: Mon, 8 Sep 2025 14:18:50 -0400 Subject: [PATCH] Move general settings to top to make more clear the validation bits --- docs/flux_train_network.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/flux_train_network.md b/docs/flux_train_network.md index f5b67a7e..ccf6dff7 100644 --- a/docs/flux_train_network.md +++ b/docs/flux_train_network.md @@ -551,17 +551,15 @@ To set up validation, add a `validation_split` and optionally `validation_seed` ```toml validation_seed = 42 # [Optional] Validation seed, otherwise uses training seed for validation split . - -[[datasets]] enable_bucket = true resolution = [1024, 1024] +[[datasets]] [[datasets.subsets]] + # This directory will use 100% of the images for training image_dir = "path/to/image/directory" [[datasets]] -enable_bucket = true -resolution = [1024, 1024] validation_split = 0.1 # Split between 0.0 and 1.0 where 1.0 will use the full subset as a validation dataset [[datasets.subsets]] @@ -569,8 +567,6 @@ validation_split = 0.1 # Split between 0.0 and 1.0 where 1.0 will use the full s image_dir = "path/to/image/second-directory" [[datasets]] -enable_bucket = true -resolution = [1024, 1024] validation_split = 1.0 # Will use this full subset as a validation subset. [[datasets.subsets]]