From 4f4cad063d841ac5ed13afb09ebba67ee10d35c8 Mon Sep 17 00:00:00 2001 From: Dijkstra Date: Mon, 30 Oct 2023 22:11:18 +0100 Subject: [PATCH] quick fix readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c07619d..1974896 100644 --- a/README.md +++ b/README.md @@ -25,17 +25,17 @@ These loaders have two custom outputs: - civitai_tags_list: a python list of the tags related to this lora on civitai - meta_tags_list: a python list of the tags used for training the lora embeded in it (if any) This outputs needs to be filtered by two othere nodes: -- TagsFormater: list in a comprehensible way the available tags +- TagsFormater: Helper to show the available tag and their indexes - tagsSelector: allow to filter tags and apply a weight to it. #### Filtering The format is simple. It's the same as python list index, but can select multiple index or ranges of indexes separated by comas. `Ex: 0, 3, 5:8, -8:` -Select a specific list of indexes: `0, 2, 3, 15`... -Select range of indexes: `2:5, 10:15`... -Select a range from the begining to a specific index: `:5` -Select a range from a specific index to the end: `5:` -You can use negative indexes. Like `-1` to select the last tag -By default `:` selects everything +- Select a specific list of indexes: `0, 2, 3, 15`... +- Select range of indexes: `2:5, 10:15`... +- Select a range from the begining to a specific index: `:5` +- Select a range from a specific index to the end: `5:` +- You can use negative indexes. Like `-1` to select the last tag +- By default `:` selects everything #### Example of normal workflow ![image](./images/loaderAdvanced.png)