2023-12-14 21:48:14 +01:00

16 lines
233 B
C#

namespace StableDiffusion.NET;
public enum Schedule
{
[NativeName("DEFAULT")]
Default,
[NativeName("DISCRETE")]
Discrete,
[NativeName("KARRAS")]
Karras,
[NativeName("N_SCHEDULES")]
N_Schedules
}