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

@ -15,3 +15,7 @@ pub fn pad(_: &Tensor) -> Result<Tensor> {
pub fn upsample_nearest2d(_: &Tensor) -> Result<Tensor> {
todo!()
}
pub fn linspace(_: f64, _: f64, _: usize) -> Result<Tensor> {
todo!()
}