Add DDPM Scheduler

This commit is contained in:
blessedcoolant
2023-05-12 03:18:34 +12:00
parent 46ca7718d9
commit 4b957edfec
5 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,7 @@
export const DIFFUSERS_SCHEDULERS: Array<string> = [
'ddim',
'ddpm',
'deis',
'lms',
'pndm',

View File

@ -47,6 +47,7 @@ export type CommonGeneratedImageMetadata = {
postprocessing: null | Array<ESRGANMetadata | FacetoolMetadata>;
sampler:
| 'ddim'
| 'ddpm'
| 'deis'
| 'lms'
| 'pndm'