forked from huggingface/diffusers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure DDPM and
diffusers
can be used without Transformers (hugg…
…ingface#5668) * fix: import bug * fix * fix * fix import utils for lcm * fix: pixart alpha init * Fix --------- Co-authored-by: Patrick von Platen <[email protected]>
- Loading branch information
1 parent
76d2002
commit 881989b
Showing
3 changed files
with
82 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
from .pipeline_pixart_alpha import PixArtAlphaPipeline | ||
from typing import TYPE_CHECKING | ||
|
||
from ...utils import ( | ||
DIFFUSERS_SLOW_IMPORT, | ||
OptionalDependencyNotAvailable, | ||
_LazyModule, | ||
get_objects_from_module, | ||
is_torch_available, | ||
is_transformers_available, | ||
) | ||
|
||
|
||
_dummy_objects = {} | ||
_import_structure = {} | ||
|
||
|
||
try: | ||
if not (is_transformers_available() and is_torch_available()): | ||
raise OptionalDependencyNotAvailable() | ||
except OptionalDependencyNotAvailable: | ||
from ...utils import dummy_torch_and_transformers_objects # noqa F403 | ||
|
||
_dummy_objects.update(get_objects_from_module(dummy_torch_and_transformers_objects)) | ||
else: | ||
_import_structure["pipeline_pixart_alpha"] = ["PixArtAlphaPipeline"] | ||
|
||
if TYPE_CHECKING or DIFFUSERS_SLOW_IMPORT: | ||
try: | ||
if not (is_transformers_available() and is_torch_available()): | ||
raise OptionalDependencyNotAvailable() | ||
|
||
except OptionalDependencyNotAvailable: | ||
from ...utils.dummy_torch_and_transformers_objects import * | ||
else: | ||
from .pipeline_pixart_alpha import PixArtAlphaPipeline | ||
|
||
else: | ||
import sys | ||
|
||
sys.modules[__name__] = _LazyModule( | ||
__name__, | ||
globals()["__file__"], | ||
_import_structure, | ||
module_spec=__spec__, | ||
) | ||
|
||
for name, value in _dummy_objects.items(): | ||
setattr(sys.modules[__name__], name, value) |