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


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


Sanchit Gandhi's avatar
Sanchit Gandhi committed
14
15
16
17
18
19
20
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
21
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
28
29
30
31
32
33
34
35
36
37
38
    _import_structure["pipeline_audioldm"] = ["AudioLDMPipeline"]

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)