mirror of
https://github.com/leejet/stable-diffusion.cpp.git
synced 2026-03-30 05:09:51 +00:00
docs: update Spectrum info about DiT models (#1360)
This commit is contained in:
parent
545fac4f3f
commit
6293ab5aaf
@ -11,7 +11,7 @@ Caching methods accelerate diffusion inference by reusing intermediate computati
|
|||||||
| `dbcache` | DiT models | Block-level L1 residual threshold |
|
| `dbcache` | DiT models | Block-level L1 residual threshold |
|
||||||
| `taylorseer` | DiT models | Taylor series approximation |
|
| `taylorseer` | DiT models | Taylor series approximation |
|
||||||
| `cache-dit` | DiT models | Combined DBCache + TaylorSeer |
|
| `cache-dit` | DiT models | Combined DBCache + TaylorSeer |
|
||||||
| `spectrum` | UNET models | Chebyshev + Taylor output forecasting |
|
| `spectrum` | UNET and DiT models | Chebyshev + Taylor output forecasting |
|
||||||
|
|
||||||
### UCache (UNET Models)
|
### UCache (UNET Models)
|
||||||
|
|
||||||
@ -111,9 +111,9 @@ Mask values: `1` = compute, `0` = can cache.
|
|||||||
--scm-policy dynamic
|
--scm-policy dynamic
|
||||||
```
|
```
|
||||||
|
|
||||||
### Spectrum (UNET Models)
|
### Spectrum (UNET and DiT Models)
|
||||||
|
|
||||||
Spectrum uses Chebyshev polynomial fitting blended with Taylor extrapolation to predict denoised outputs, skipping entire UNet forward passes. Based on the paper [Spectrum: Adaptive Spectral Feature Forecasting for Efficient Diffusion Sampling](https://github.com/tingyu215/Spectrum).
|
Spectrum uses Chebyshev polynomial fitting blended with Taylor extrapolation to predict denoised outputs, skipping entire forward passes. Based on the paper [Spectrum: Adaptive Spectral Feature Forecasting for Efficient Diffusion Sampling](https://github.com/tingyu215/Spectrum).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sd-cli -m model.safetensors -p "a cat" --cache-mode spectrum
|
sd-cli -m model.safetensors -p "a cat" --cache-mode spectrum
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user