add parser to infotext

This commit is contained in:
Vladimir Mandic
2023-05-19 16:56:08 -04:00
parent 4c4e147baa
commit 794b23cc2b
2 changed files with 12 additions and 1 deletions
+10
View File
@@ -56,3 +56,13 @@ Tech that can be integrated as part of the core workflow...
- Bunch of stuff: <https://pharmapsychotic.com/tools.html>
### Pending Code Updates
- tested with **torch 2.1** and **cuda 12.1**
(production remains on torch2.0.1+cuda11.8)
- fully extend support of `--data-dir`
allows multiple installations to share pretty much everything, not just models
- add dark/light theme mode toggle
- redo some `clip-skip` functionality
- better matching for vae vs model
- update to `xyz grid` to allow creation of large number of images without
- fixes...amazing how many issues were introduced by porting new a1111 code without adding almost no new functionality
+2 -1
View File
@@ -448,7 +448,8 @@ def create_infotext(p: StableDiffusionProcessing, all_prompts, all_seeds, all_su
"Token merging merge cross attention": None if opts.token_merging_merge_cross_attention is False else opts.token_merging_merge_cross_attention,
"Token merging merge mlp": None if opts.token_merging_merge_mlp is False else opts.token_merging_merge_mlp,
"Token merging stride x": None if opts.token_merging_stride_x == 2 else opts.token_merging_stride_x,
"Token merging stride y": None if opts.token_merging_stride_y == 2 else opts.token_merging_stride_y
"Token merging stride y": None if opts.token_merging_stride_y == 2 else opts.token_merging_stride_y,
"Parser": opts.prompt_attention,
}
generation_params.update(p.extra_generation_params)
generation_params_text = ", ".join([k if k == v else f'{k}: {generation_parameters_copypaste.quote(v)}' for k, v in generation_params.items() if v is not None])