Added more information about prompts in Private Log, made wildcards in negative prompt use different seed
This commit is contained in:
parent
898fcb752b
commit
48d2fb85f9
@ -1 +1 @@
|
|||||||
version = '2.1.710'
|
version = '2.1.711'
|
||||||
|
|||||||
@ -231,7 +231,7 @@ def worker():
|
|||||||
for i in range(image_number):
|
for i in range(image_number):
|
||||||
task_seed = seed + i
|
task_seed = seed + i
|
||||||
task_prompt = apply_wildcards(prompt, task_seed)
|
task_prompt = apply_wildcards(prompt, task_seed)
|
||||||
task_negative_prompt = apply_wildcards(negative_prompt, task_seed)
|
task_negative_prompt = apply_wildcards(negative_prompt, task_seed + 1)
|
||||||
task_extra_positive_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_positive_prompts]
|
task_extra_positive_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_positive_prompts]
|
||||||
task_extra_negative_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_negative_prompts]
|
task_extra_negative_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_negative_prompts]
|
||||||
|
|
||||||
@ -257,6 +257,7 @@ def worker():
|
|||||||
tasks.append(dict(
|
tasks.append(dict(
|
||||||
task_seed=task_seed,
|
task_seed=task_seed,
|
||||||
task_prompt=task_prompt,
|
task_prompt=task_prompt,
|
||||||
|
task_negative_prompt=task_negative_prompt,
|
||||||
positive=positive_basic_workloads,
|
positive=positive_basic_workloads,
|
||||||
negative=negative_basic_workloads,
|
negative=negative_basic_workloads,
|
||||||
expansion='',
|
expansion='',
|
||||||
@ -539,8 +540,10 @@ def worker():
|
|||||||
|
|
||||||
for x in imgs:
|
for x in imgs:
|
||||||
d = [
|
d = [
|
||||||
('Prompt', raw_prompt),
|
('Prompt', task['task_prompt']),
|
||||||
('Negative Prompt', raw_negative_prompt),
|
('Prompt (raw)', raw_prompt),
|
||||||
|
('Negative Prompt', task['task_negative_prompt']),
|
||||||
|
('Negative Prompt (raw)', raw_negative_prompt),
|
||||||
('Fooocus V2 Expansion', task['expansion']),
|
('Fooocus V2 Expansion', task['expansion']),
|
||||||
('Styles', str(raw_style_selections)),
|
('Styles', str(raw_style_selections)),
|
||||||
('Performance', performance_selection),
|
('Performance', performance_selection),
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
|
# 2.1.711
|
||||||
|
|
||||||
|
* Added more information about prompts in Private Log.
|
||||||
|
* Made wildcards in negative prompt use different seed.
|
||||||
|
|
||||||
# 2.1.710
|
# 2.1.710
|
||||||
|
|
||||||
* Added information about wildcards usage in console log.
|
* Added information about wildcards usage in console log.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user