update docs

This commit is contained in:
Artiprocher
2024-09-11 16:37:46 +08:00
parent 7f6e35fe35
commit 41f58e2d41
20 changed files with 637 additions and 570 deletions

View File

@@ -0,0 +1,11 @@
# Schedulers
Scheduler 控制模型的整个去噪(或采样)过程。在加载 Pipeline 时DiffSynth 会自动选择最适合当前 Pipeline 的调度器,无需额外配置。
我们支持的调度器包括:
- **EnhancedDDIMScheduler**扩展了去噪扩散概率模型DDPM中的去噪过程引入了非马尔可夫指导。
- **FlowMatchScheduler**:实现了 [Stable Diffusion 3](https://arxiv.org/abs/2403.03206) 中提出的流量匹配采样方法。
- **ContinuousODEScheduler**基于常微分方程ODE的调度器。