candle_transformers/models/wuerstchen/
mod.rs

1//! Würstchen Efficient Diffusion Model
2//!
3//! Würstchen is an efficient diffusion model architecture for generating images using
4//! a two-stage approach with a small decoder and prior network.
5//!
6//! - 💻 [GH Link](https://github.com/dome272/Wuerstchen)
7//! - 🤗 [HF Link](https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py)
8//! - 📝 [Paper](https://openreview.net/pdf?id=gU58AyJlYz)
9//!
10//! ## Example
11//!
12//! <div align=center>
13//!   <img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/wuerstchen/assets/cat.jpg" alt="" width=320>
14//!   <p>"Anthropomorphic cat dressed as a fire fighter"</p>
15//! </div>
16
17pub mod attention_processor;
18pub mod common;
19pub mod ddpm;
20pub mod diffnext;
21pub mod paella_vq;
22pub mod prior;