From a5edb981a72ff9d516f3bea4e18b448ed0178751 Mon Sep 17 00:00:00 2001 From: anton- Date: Mon, 19 Dec 2022 17:56:42 +0100 Subject: [PATCH] [Patch] Return import for the unclip pipeline loader --- src/diffusers/pipelines/unclip/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/diffusers/pipelines/unclip/__init__.py b/src/diffusers/pipelines/unclip/__init__.py index c014ff0855..c495367bc7 100644 --- a/src/diffusers/pipelines/unclip/__init__.py +++ b/src/diffusers/pipelines/unclip/__init__.py @@ -13,3 +13,4 @@ except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import UnCLIPPipeline else: from .pipeline_unclip import UnCLIPPipeline + from .text_proj import UnCLIPTextProjModel