Add the ddim scheduler. (#330)

This commit is contained in:
Laurent Mazare
2023-08-06 21:44:00 +02:00
committed by GitHub
parent d34039e352
commit 1c062bf06b
5 changed files with 445 additions and 0 deletions

View File

@ -3,8 +3,11 @@ extern crate intel_mkl_src;
mod attention;
mod clip;
mod ddim;
mod embeddings;
mod resnet;
mod schedulers;
mod stable_diffusion;
mod unet_2d;
mod unet_2d_blocks;
mod utils;