if you replace imports like from ...models import AutoencoderKL, UNet2DConditionModel with from diffusers.models import AutoencoderKL, UNet2DConditionModel you can copy paste the pipeline files in your code and simply run it without patching diffusers
Should i open a PR to do this?
Also, why not add these pipelines to the diffusers package with a PR instead of keeping them in a separate repository?
if you replace imports like
from ...models import AutoencoderKL, UNet2DConditionModelwithfrom diffusers.models import AutoencoderKL, UNet2DConditionModelyou can copy paste the pipeline files in your code and simply run it without patchingdiffusersShould i open a PR to do this?
Also, why not add these pipelines to the
diffuserspackage with a PR instead of keeping them in a separate repository?