mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-12 13:28:35 +00:00
18 lines
218 B
C#
18 lines
218 B
C#
namespace StableDiffusion.NET;
|
|
|
|
public enum Sampler
|
|
{
|
|
Default,
|
|
Euler,
|
|
Heun,
|
|
DPM2,
|
|
DPMPP2SA,
|
|
DPMPP2M,
|
|
DPMPP2Mv2,
|
|
IPNDM,
|
|
IPNDM_V,
|
|
LCM,
|
|
DDIM_Trailing,
|
|
TCD,
|
|
Euler_A,
|
|
} |