filipemeneses / ComfyUI_node_Lilly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ComfyUI-node-Lilly

install

ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_node_Lilly

2023-03-22 05 54 43

wildcards

ex

  • form a{b|{c|}|{d|e|}|f|}g____ my

  • to aeg quality_my, breasts, { |character_dress|dress_my}, shoulder, {high heels,| } {choker,| } {lora:__lora_lst__:__rora_num__,| } NSFW, NSFW_my, { |style_my,}

ex : {3$$a1|{b2|c3|}|d4|{-$$|f|g}|{-2$$h||i}|{1-$$j|k|}}/{$$l|m|}/{0$$n|}
{1|2|3} -> 1 or 2 or 3
{2$$a|b|c} -> a,b or b,c or c,a or bb or ....
{9$$a|b|c} ->  {3$$a|b|c} auto fix max count
{1-2$$a|b|c} -> 1~2 random choise
{-2$$a|b|c} -> {0-2$$a|b|c}  0-2
{1-$$a|b|c} -> {0-3$$a|b|c}  1-max
{-$$a|b|c} -> {0-3$$a|b|c}  0-max

run sample

python wildcards.py

python sample

import wildcards as w

# 가져올 파일 목록. get wildcards file
w.card_path=os.path.dirname(__file__)+"\\wildcards\\**\\*.txt"

# 실행 run
print(w.run("a{__b__|{c|}|{__d__|e|}|f|}g____ __my__"))

wildcards.py # modul file
wildcards/*.txt # wildcards file
wildcards/**/*.txt # wildcards file

txt file (UTF8)

# 주석
a,b
{b|c|__anotherfile__}
__anotherfile__

result

a,b
b
c
__anotherfile__

for ComfyUI

CLIPTextEncodeWildcards

  • CLIPTextEncodeWildcards : no seed
  • CLIPTextEncodeWildcards : seed

2023-03-20 02 13 50

SimpleSampler+modelVAE

  • include wildcards

SimpleSampler+modelVAE

SimpleSampler

  • include wildcards

SimpleSampler

SimpleSamplerVAE

  • include wildcards

SimpleSamplerVAE

random_sampler_node.py

2023-03-18 20 53 37

VAELoaderDecode.py

2023-03-18 20 52 27

About


Languages

Language:Python 100.0%