Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Paella (Fast Text-Conditional Discrete Denoising on Vector-Quantized Latent Spaces) #2058

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/diffusers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
PNDMPipeline,
RePaintPipeline,
ScoreSdeVePipeline,
PaellaTextToImagePipeline,
)
from .schedulers import (
DDIMScheduler,
Expand All @@ -85,6 +86,7 @@
ScoreSdeVeScheduler,
UnCLIPScheduler,
VQDiffusionScheduler,
PaellaScheduler,
)
from .training_utils import EMAModel

Expand Down
1 change: 1 addition & 0 deletions src/diffusers/pipelines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from .repaint import RePaintPipeline
from .score_sde_ve import ScoreSdeVePipeline
from .stochastic_karras_ve import KarrasVePipeline
from .paella import PaellaTextToImagePipeline

try:
if not (is_torch_available() and is_librosa_available()):
Expand Down
5 changes: 5 additions & 0 deletions src/diffusers/pipelines/paella/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from ...utils import is_torch_available


if is_torch_available():
from .pipeline_paella import PaellaTextToImagePipeline
Loading