`diffusers` is more modularized than `transformers`. The idea is that researchers and engineers can use only parts of the library easily for the own use cases.
It could become a central place for all kinds of models, schedulers, training utils and processors that one can mix and match for one's own use case.
Both models and scredulers should be load- and saveable from the Hub.
Both models and schedulers should be load- and saveable from the Hub.
Example:
Example for [DDPM](https://arxiv.org/abs/2006.11239):
```python
importtorch
...
...
@@ -32,65 +32,91 @@ from diffusers import UNetModel, GaussianDDPMScheduler