From b001d77efb4b87a3f03ae05fc94fe71cffc3e78e Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Sun, 2 Mar 2025 08:55:56 -0700 Subject: [PATCH] Added LoKr instructions to the readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index f974dafc..5f0c8cb1 100644 --- a/README.md +++ b/README.md @@ -311,3 +311,17 @@ You can also exclude layers by their names by using `ignore_if_contains` network `ignore_if_contains` takes priority over `only_if_contains`. So if a weight is covered by both, if will be ignored. + +## LoKr Training + +To learn more about LoKr, read more about it at [KohakuBlueleaf/LyCORIS](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Guidelines.md). To train a LoKr model, you can adjust the network type in the config file like so: + +```yaml + network: + type: "lokr" + lokr_full_rank: true + lokr_factor: 8 +``` + +Everything else should work the same including layer targeting. +