mirror of
				https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
				synced 2025-11-04 03:55:05 +00:00 
			
		
		
		
	Fix for #15333
- Fix "X/Y/Z plot" not working with "Schedule type" - Fix "Schedule type" not being saved to "params.txt"
This commit is contained in:
		
							parent
							
								
									31306ce672
								
							
						
					
					
						commit
						f3ca6a92ad
					
				@ -722,7 +722,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter
 | 
			
		||||
    generation_params = {
 | 
			
		||||
        "Steps": p.steps,
 | 
			
		||||
        "Sampler": p.sampler_name,
 | 
			
		||||
        "Schedule type": None,
 | 
			
		||||
        "Schedule type": p.scheduler,
 | 
			
		||||
        "CFG scale": p.cfg_scale,
 | 
			
		||||
        "Image CFG scale": getattr(p, 'image_cfg_scale', None),
 | 
			
		||||
        "Seed": p.all_seeds[0] if use_main_prompt else all_seeds[index],
 | 
			
		||||
 | 
			
		||||
@ -11,7 +11,7 @@ import numpy as np
 | 
			
		||||
import modules.scripts as scripts
 | 
			
		||||
import gradio as gr
 | 
			
		||||
 | 
			
		||||
from modules import images, sd_samplers, processing, sd_models, sd_vae, sd_samplers_kdiffusion, errors
 | 
			
		||||
from modules import images, sd_samplers, processing, sd_models, sd_vae, sd_schedulers, errors
 | 
			
		||||
from modules.processing import process_images, Processed, StableDiffusionProcessingTxt2Img
 | 
			
		||||
from modules.shared import opts, state
 | 
			
		||||
import modules.shared as shared
 | 
			
		||||
@ -248,7 +248,7 @@ axis_options = [
 | 
			
		||||
    AxisOption("Sigma min", float, apply_field("s_tmin")),
 | 
			
		||||
    AxisOption("Sigma max", float, apply_field("s_tmax")),
 | 
			
		||||
    AxisOption("Sigma noise", float, apply_field("s_noise")),
 | 
			
		||||
    AxisOption("Schedule type", str, apply_override("k_sched_type"), choices=lambda: list(sd_samplers_kdiffusion.k_diffusion_scheduler)),
 | 
			
		||||
    AxisOption("Schedule type", str, apply_field("scheduler"), choices=lambda: [x.label for x in sd_schedulers.schedulers]),
 | 
			
		||||
    AxisOption("Schedule min sigma", float, apply_override("sigma_min")),
 | 
			
		||||
    AxisOption("Schedule max sigma", float, apply_override("sigma_max")),
 | 
			
		||||
    AxisOption("Schedule rho", float, apply_override("rho")),
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user