__init__.py 1.33 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
    _LazyModule,
Sanchit Gandhi's avatar
Sanchit Gandhi committed
6
7
8
9
10
11
    is_torch_available,
    is_transformers_available,
    is_transformers_version,
)


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

Sanchit Gandhi's avatar
Sanchit Gandhi committed
15
16
17
18
19
20
21
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 (
        AudioLDMPipeline,
    )
Dhruv Nair's avatar
Dhruv Nair committed
22
23

    _dummy_objects.update({"AudioLDMPipeline": AudioLDMPipeline})
Sanchit Gandhi's avatar
Sanchit Gandhi committed
24
else:
Dhruv Nair's avatar
Dhruv Nair committed
25
26
27
    _import_structure["pipeline_audioldm"] = ["AudioLDMPipeline"]


28
29
30
31
32
33
34
35
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 (
            AudioLDMPipeline,
        )
Dhruv Nair's avatar
Dhruv Nair committed
36

37
38
39
40
41
42
43
44
45
46
47
    else:
        from .pipeline_audioldm import AudioLDMPipeline
else:
    import sys

    sys.modules[__name__] = _LazyModule(
        __name__,
        globals()["__file__"],
        _import_structure,
        module_spec=__spec__,
    )
Dhruv Nair's avatar
Dhruv Nair committed
48

49
50
    for name, value in _dummy_objects.items():
        setattr(sys.modules[__name__], name, value)