Closed theqmann closed 5 months ago
Was able to find the duplication issue in the foursections like this:
cur_prompt_series_G[f] += (str(settings.pre_text_G) + " " + str(current_prompt_G) + " " + str(settings.app_text_G))
nxt_prompt_series_G[f] += (str(settings.pre_text_G) + " " + str(next_prompt_G) + " " + str(settings.app_text_G))
They should just be
cur_prompt_series_G[f] += (str(current_prompt_G))
nxt_prompt_series_G[f] += (str(next_prompt_G))
I made the changes in #102
Haven't checked the non SDXL ones, but there's a few issues I found in the BatchPromptScheduleSDXL (Latent Input) node.
Around line 446 of BatchFuncs.py
Should probably be:
The print around line 581 has a broken parenthesis.
Should probably be:
After changing these, it looks like the prompt weighting is broken for the last prompt (would assume weight 1.0 for frames 4 & 5), and the pre and append are duplicated. I used preG/preL as prepend; appendG, appendL as append; and a 6 frame schedule with this syntax: