You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,8 @@ The majority of scripts is licensed under ASL 2.0 (including codes from Diffuser
143
143
- bitsandbytes, transformers, accelerate and huggingface_hub are updated.
144
144
- If you encounter any issues, please report them.
145
145
146
+
- There was a bug where the min_bucket_reso/max_bucket_reso in the dataset configuration did not create the correct resolution bucket if it was not divisible by bucket_reso_steps. These values are now warned and automatically rounded to a divisible value. Thanks to Maru-mee for raising the issue. Related PR [#1632](https://github.com/kohya-ss/sd-scripts/pull/1632)
147
+
146
148
-`bitsandbytes` is updated to 0.44.0. Now you can use `AdEMAMix8bit` and `PagedAdEMAMix8bit` in the training script. PR [#1640](https://github.com/kohya-ss/sd-scripts/pull/1640) Thanks to sdbds!
147
149
- There is no abbreviation, so please specify the full path like `--optimizer_type bitsandbytes.optim.AdEMAMix8bit` (not bnb but bitsandbytes).
Copy file name to clipboardExpand all lines: docs/config_README-en.md
+2
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,8 @@ These are options related to the configuration of the data set. They cannot be d
128
128
129
129
*`batch_size`
130
130
* This corresponds to the command-line argument `--train_batch_size`.
131
+
*`max_bucket_reso`, `min_bucket_reso`
132
+
* Specify the maximum and minimum resolutions of the bucket. It must be divisible by `bucket_reso_steps`.
131
133
132
134
These settings are fixed per dataset. That means that subsets belonging to the same dataset will share these settings. For example, if you want to prepare datasets with different resolutions, you can define them as separate datasets as shown in the example above, and set different resolutions for each.
0 commit comments