mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-13 05:48:40 +00:00
14 lines
174 B
C#
14 lines
174 B
C#
namespace StableDiffusion.NET;
|
|
|
|
public enum Sampler
|
|
{
|
|
Euler_A,
|
|
Euler,
|
|
Heun,
|
|
DPM2,
|
|
DPMPP2SA,
|
|
DPMPP2M,
|
|
DPMPP2Mv2,
|
|
LCM,
|
|
N_Sample_Methods
|
|
} |