__init__.py 912 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
_import_structure = {}
_dummy_objects = {}

Sanchit Gandhi's avatar
Sanchit Gandhi committed
14
15
16
17
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
18
19
20
21
    from ...utils import dummy_torch_and_transformers_objects  # noqa F403

    _dummy_objects.update(get_objects_from_module(dummy_torch_and_transformers_objects))

Sanchit Gandhi's avatar
Sanchit Gandhi committed
22
else:
Dhruv Nair's avatar
Dhruv Nair committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    _import_structure["pipeline_musicldm"] = ["MusicLDMPipeline"]

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)