Skip to content

Commit 74af9cb

Browse files
authored
Merge pull request #27 from DarthAffe/sampler
Added IPNDM and IPNDM_V sampler; added GITS and exponential schedule
2 parents f988643 + 2335d0e commit 74af9cb

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

StableDiffusion.NET/Enums/Sampler.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public enum Sampler
99
DPMPP2SA,
1010
DPMPP2M,
1111
DPMPP2Mv2,
12-
LCM,
13-
N_Sample_Methods
12+
IPNDM,
13+
IPNDM_V,
14+
LCM
1415
}

StableDiffusion.NET/Enums/Schedule.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ public enum Schedule
55
Default,
66
Discrete,
77
Karras,
8+
Exponential,
89
AYS,
9-
N_Schedules
10+
GITS
1011
}

0 commit comments

Comments
 (0)