vmobilis
vmobilis
**Note that Issues are for bugs only. Use the discussions tab for feature requests.** **Describe the bug** Hello, I have installed "Code Assist" (v0.2.9 alpha, build 20), tested it and...
The samplers Euler and Euler Ancestral are separated in their own branches of samplers switch. For Euler, I was referring to `stable-diffusion.cpp`: https://github.com/leejet/stable-diffusion.cpp/blob/10c6501bd05a697e014f1bee3a84e5664290c489/denoiser.hpp#L535 Euler Ancestral is left unchanged. Example (for...
DPMPP2S_A: https://github.com/leejet/stable-diffusion.cpp/blob/10c6501bd05a697e014f1bee3a84e5664290c489/denoiser.hpp#L686 Current formula: ``` if (sigma_down == 0) { d = (x - denoised) / sigmas[i]; dt = sigma_down - sigmas[i]; x += d * dt; } ``` Since...
When tensors in VAE were skipped, progress bar is not filled entirely and pretty_progress() does not put line break after the bar, for example: ``` |==================================================| 1130/1130 - 166.67it/s |===================>...
Clang warns that ggml_type != sd_type_t. And thank you for the program.
Source: https://github.com/nothings/stb/blob/master/stb_image.h Thank you for the program.
This silences warnings about unused argument of STBIR__DEBUG_ASSERT(). Source: https://github.com/nothings/stb/blob/master/deprecated/stb_image_resize.h @leejet, if license ([see line 2594 at the end of file](https://github.com/nothings/stb/blob/5c205738c191bcb0abc65c4febfa9bd25ff35234/deprecated/stb_image_resize.h#L2594)) is acceptable. And thank you for the program.
This will save memory for txt2img. And thank you for the program!
1. Move pretty_progress() calls from sample() to sample_k_diffusion() to account all time taken by sampling cycle. 2. Add pretty_progress() with time remainder. 3. Add configuration option to use that additional...