Visit ComfyUI Online for ready-to-use ComfyUI environment
Generate custom sigma sampling schedules using beta distribution for AI models, enhancing sample quality and characteristics.
The BetaSamplingScheduler
is a specialized node designed to generate a sequence of sigma values for sampling in AI models, particularly useful in diffusion models. This node leverages the beta distribution to create a custom schedule for sigma values, which can significantly influence the quality and characteristics of the generated samples. By adjusting the alpha and beta parameters, you can control the shape of the beta distribution, allowing for fine-tuned sampling schedules that can enhance the performance and output of your AI models. This node is particularly beneficial for AI artists looking to experiment with different sampling techniques to achieve unique and high-quality results.
This parameter expects a model object that the scheduler will use to generate sigma values. The model should be compatible with the sampling process and provide the necessary sigma values for the scheduler to operate.
This integer parameter defines the number of steps for the sampling process. It determines how many sigma values will be generated. The default value is 20, with a minimum of 1 and a maximum of 10,000. Adjusting the number of steps can impact the granularity and smoothness of the sampling process.
This float parameter controls the alpha value of the beta distribution used in the scheduler. It influences the shape of the distribution, affecting how sigma values are spread across the steps. The default value is 0.6, with a range from 0.0 to 50.0. Fine-tuning this parameter can help achieve the desired sampling characteristics.
This float parameter controls the beta value of the beta distribution used in the scheduler. Similar to the alpha parameter, it affects the shape of the distribution and the spread of sigma values. The default value is 0.6, with a range from 0.0 to 50.0. Adjusting this parameter allows for further customization of the sampling schedule.
The output of this node is a sequence of sigma values, represented as a tensor. These sigma values are used in the sampling process of the model, influencing the generation of samples. The sequence of sigmas is crucial for controlling the noise levels at each step of the sampling process, ultimately affecting the quality and characteristics of the generated output.
ValueError: Model object is not compatible
RuntimeError: Steps value out of range
TypeError: Alpha or Beta value is not a float
© Copyright 2024 RunComfy. All Rights Reserved.