__init__.py 945 Bytes
Newer Older
Sanchit Gandhi's avatar
Sanchit Gandhi committed
1
2
from ...utils import (
    OptionalDependencyNotAvailable,
Dhruv Nair's avatar
Dhruv Nair committed
3
4
    _LazyModule,
    get_objects_from_module,
Sanchit Gandhi's avatar
Sanchit Gandhi committed
5
6
7
8
9
10
    is_torch_available,
    is_transformers_available,
    is_transformers_version,
)


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


Sanchit Gandhi's avatar
Sanchit Gandhi committed
15
16
17
18
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
19
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
27
28
29
30
31
32
33
34
    _import_structure["modeling_audioldm2"] = ["AudioLDM2ProjectionModel", "AudioLDM2UNet2DConditionModel"]
    _import_structure["pipeline_audioldm2"] = ["AudioLDM2Pipeline"]

    import sys

    sys.modules[__name__] = _LazyModule(
        __name__,
        globals()["__file__"],
        _import_structure,
        module_spec=__spec__,
    )