__init__.py 1.52 KB
Newer Older
1
2
from typing import TYPE_CHECKING

Sanchit Gandhi's avatar
Sanchit Gandhi committed
3
4
from ...utils import (
    OptionalDependencyNotAvailable,
Dhruv Nair's avatar
Dhruv Nair committed
5
6
    _LazyModule,
    get_objects_from_module,
Sanchit Gandhi's avatar
Sanchit Gandhi committed
7
8
9
10
11
12
    is_torch_available,
    is_transformers_available,
    is_transformers_version,
)


Dhruv Nair's avatar
Dhruv Nair committed
13
_dummy_objects = {}
14
_import_structure = {}
Dhruv Nair's avatar
Dhruv Nair committed
15

Sanchit Gandhi's avatar
Sanchit Gandhi committed
16
17
18
19
try:
    if not (is_transformers_available() and is_torch_available() and is_transformers_version(">=", "4.27.0")):
        raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
Dhruv Nair's avatar
Dhruv Nair committed
20
21
22
    from ...utils import dummy_torch_and_transformers_objects

    _dummy_objects.update(get_objects_from_module(dummy_torch_and_transformers_objects))
Sanchit Gandhi's avatar
Sanchit Gandhi committed
23
else:
Dhruv Nair's avatar
Dhruv Nair committed
24
25
26
    _import_structure["modeling_audioldm2"] = ["AudioLDM2ProjectionModel", "AudioLDM2UNet2DConditionModel"]
    _import_structure["pipeline_audioldm2"] = ["AudioLDM2Pipeline"]

27
28
29
30
31
32
33
34
35
36
37
38
39

if TYPE_CHECKING:
    try:
        if not (is_transformers_available() and is_torch_available() and is_transformers_version(">=", "4.27.0")):
            raise OptionalDependencyNotAvailable()
    except OptionalDependencyNotAvailable:
        from ...utils.dummy_torch_and_transformers_objects import *

    else:
        from .modeling_audioldm2 import AudioLDM2ProjectionModel, AudioLDM2UNet2DConditionModel
        from .pipeline_audioldm2 import AudioLDM2Pipeline

else:
Dhruv Nair's avatar
Dhruv Nair committed
40
41
42
43
44
45
46
47
    import sys

    sys.modules[__name__] = _LazyModule(
        __name__,
        globals()["__file__"],
        _import_structure,
        module_spec=__spec__,
    )
48
49
    for name, value in _dummy_objects.items():
        setattr(sys.modules[__name__], name, value)