From 99b607c60cb7bb143c1b61c10dcf8d42e8fd0eac Mon Sep 17 00:00:00 2001 From: Kohya S Date: Mon, 22 May 2023 18:46:57 +0900 Subject: [PATCH] update readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 846d23fb..d791a089 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,19 @@ The majority of scripts is licensed under ASL 2.0 (including codes from Diffuser ## Change History +### 22 May 2023, 2023/05/22 + +- Fixed several bugs. + - The state is saved even when the `--save_state` option is not specified in `fine_tune.py` and `train_db.py`. [PR #521](https://github.com/kohya-ss/sd-scripts/pull/521) Thanks to akshaal! + - Cannot load LoRA without `alpha`. [PR #527](https://github.com/kohya-ss/sd-scripts/pull/527) Thanks to Manjiz! + - Minor changes to console output during sample generation. [PR #515](https://github.com/kohya-ss/sd-scripts/pull/515) Thanks to yanhuifair! +- The generation script now uses xformers for VAE as well. +- いくつかのバグ修正を行いました。 + - `fine_tune.py`と`train_db.py`で`--save_state`オプション未指定時にもstateが保存される。 [PR #521](https://github.com/kohya-ss/sd-scripts/pull/521) akshaal氏に感謝します。 + - `alpha`を持たないLoRAを読み込めない。[PR #527](https://github.com/kohya-ss/sd-scripts/pull/527) Manjiz氏に感謝します。 + - サンプル生成時のコンソール出力の軽微な変更。[PR #515](https://github.com/kohya-ss/sd-scripts/pull/515) yanhuifair氏に感謝します。 +- 生成スクリプトでVAEについてもxformersを使うようにしました。 + ### 16 May 2023, 2023/05/16 - Fixed an issue where an error would occur if the encoding of the prompt file was different from the default. [PR #510](https://github.com/kohya-ss/sd-scripts/pull/510) Thanks to sdbds!