From c84544933a7b65fb26b996b2545d6d3f97bdbeb7 Mon Sep 17 00:00:00 2001 From: hlky Date: Mon, 23 Sep 2024 19:13:32 +0100 Subject: [PATCH 1/2] Add Noise Schedule/Schedule Type to Schedulers Overview docs --- docs/source/en/api/schedulers/overview.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/source/en/api/schedulers/overview.md b/docs/source/en/api/schedulers/overview.md index 28db9f3f7aac..2caf2112bf7d 100644 --- a/docs/source/en/api/schedulers/overview.md +++ b/docs/source/en/api/schedulers/overview.md @@ -45,6 +45,13 @@ Many schedulers are implemented from the [k-diffusion](https://github.com/crowso | N/A | [`DEISMultistepScheduler`] | | | N/A | [`UniPCMultistepScheduler`] | | +## Noise Schedules/Schedule Type +| A1111/k-diffusion | 🤗 Diffusers | +|---------------------|----------------------------------------| +| Karras | init with `use_karras_sigmas=True` | +| sgm_uniform | init with `timestep_spacing="trailing"`| +| simple | init with `timestep_spacing="trailing"`| + All schedulers are built from the base [`SchedulerMixin`] class which implements low level utilities shared by all schedulers. ## SchedulerMixin From 48f0904871662b1cab98e209b4adfa15cd4b0265 Mon Sep 17 00:00:00 2001 From: hlky Date: Mon, 23 Sep 2024 23:12:26 +0100 Subject: [PATCH 2/2] Update docs/source/en/api/schedulers/overview.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> --- docs/source/en/api/schedulers/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/api/schedulers/overview.md b/docs/source/en/api/schedulers/overview.md index 2caf2112bf7d..ea8fcb15afd6 100644 --- a/docs/source/en/api/schedulers/overview.md +++ b/docs/source/en/api/schedulers/overview.md @@ -45,7 +45,7 @@ Many schedulers are implemented from the [k-diffusion](https://github.com/crowso | N/A | [`DEISMultistepScheduler`] | | | N/A | [`UniPCMultistepScheduler`] | | -## Noise Schedules/Schedule Type +## Noise schedules and schedule types | A1111/k-diffusion | 🤗 Diffusers | |---------------------|----------------------------------------| | Karras | init with `use_karras_sigmas=True` |