-
Notifications
You must be signed in to change notification settings - Fork 27.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Option to dump every K steps result to files #2739
Comments
I believe you're looking for the Script: X/Y plot option. For your particular use case, I believe setting X type Seed with a static seed, then Y type as Steps. In the Steps, you'd set your steps such as 20-100 [10] That would give you a grid (plus the raw images in output) showing the effects of step every 10 steps. |
Will X/Y plot option reduce the repeated calculation process? |
The reason this isn't a default feature is that step 40 of a 100 step generation is not the same result as step 40 of a 40 step generation |
The step 20/40 is also not the same as 20/100 according to preview snapshots. |
My assumption is that there's some kind of parabolic curve to the math applied, where either towards the beginning, towards the end, or both, the processing scales differently. I don't know for certain. Later edit: this is incorrect, and step count is the number of operations the denoising is broken down into |
|
this is what I need:
While it seem dont work when use batch size > 1, it can only dump first image in the batch. |
This is same with #1026 |
Combines a few different scripts in various GitHub issues with some useful added features: - This script is set to `scripts.AlwaysVisible`, meaning it can be run in combination with other scripts - Intermediate images are saved using the same filename structure as the final images, in a subdirectory called "intermediates". The custom script in the wiki overwrites your intermediate images each time you generate new images - Allows you to save every N images (defaults to 5) - Allows you to save either denoised or noisy intermediate images See AUTOMATIC1111#1026 See AUTOMATIC1111#2137 See AUTOMATIC1111#2094 See AUTOMATIC1111#2739 See AUTOMATIC1111#4709
Combines a few different scripts in various GitHub issues with some useful added features: - This script is set to `scripts.AlwaysVisible`, meaning it can be run in combination with other scripts - Intermediate images are saved using the same filename structure as the final images, in a subdirectory called "intermediates". The custom script in the wiki overwrites your intermediate images each time you generate new images - Allows you to save every N images (defaults to 5) - Allows you to save either denoised or noisy intermediate images See AUTOMATIC1111#1026 See AUTOMATIC1111#2137 See AUTOMATIC1111#2094 See AUTOMATIC1111#2739 See AUTOMATIC1111#4709
Describe the solution you'd like
Feature Request: Option to dump every K steps result to files
Used to help analyze the effect of step number (more than 20) on the image.
Maybe can find some strategy for auto step number by using this.
The text was updated successfully, but these errors were encountered: