__init__.py 5.47 KB
Newer Older
Patrick von Platen's avatar
Patrick von Platen committed
1
# Copyright 2023 The HuggingFace Team. All rights reserved.
2
3
4
5
6
7
8
9
10
11
12
13
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
14

15

16
17
from ..utils import (
    OptionalDependencyNotAvailable,
Dhruv Nair's avatar
Dhruv Nair committed
18
    _LazyModule,
19
20
21
22
23
    is_flax_available,
    is_scipy_available,
    is_torch_available,
    is_torchsde_available,
)
24
25


Dhruv Nair's avatar
Dhruv Nair committed
26
27
28
_import_structure = {}
_dummy_modules = {}

29
30
31
32
try:
    if not is_torch_available():
        raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
Dhruv Nair's avatar
Dhruv Nair committed
33
34
35
36
37
38
39
40
41
    from ..utils import dummy_pt_objects  # noqa F403

    modules = {}
    for name in dir(dummy_pt_objects):
        if (not name.endswith("Scheduler")) or name.startswith("_"):
            continue
        modules[name] = getattr(dummy_pt_objects, name)
    _dummy_modules.update(modules)

42
else:
Dhruv Nair's avatar
Dhruv Nair committed
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    _import_structure["scheduling_consistency_models"] = ["CMStochasticIterativeScheduler"]
    _import_structure["scheduling_ddim"] = ["DDIMScheduler"]
    _import_structure["scheduling_ddim_inverse"] = ["DDIMInverseScheduler"]
    _import_structure["scheduling_ddim_parallel"] = ["DDIMParallelScheduler"]
    _import_structure["scheduling_ddpm"] = ["DDPMScheduler"]
    _import_structure["scheduling_ddpm_parallel"] = ["DDPMParallelScheduler"]
    _import_structure["scheduling_deis_multistep"] = ["DEISMultistepScheduler"]
    _import_structure["scheduling_dpmsolver_multistep"] = ["DPMSolverMultistepScheduler"]
    _import_structure["scheduling_dpmsolver_multistep_inverse"] = ["DPMSolverMultistepInverseScheduler"]
    _import_structure["scheduling_dpmsolver_singlestep"] = ["DPMSolverSinglestepScheduler"]
    _import_structure["scheduling_euler_ancestral_discrete"] = ["EulerAncestralDiscreteScheduler"]
    _import_structure["scheduling_euler_discrete"] = ["EulerDiscreteScheduler"]
    _import_structure["scheduling_heun_discrete"] = ["HeunDiscreteScheduler"]
    _import_structure["scheduling_ipndm"] = ["IPNDMScheduler"]
    _import_structure["scheduling_k_dpm_2_ancestral_discrete"] = ["KDPM2AncestralDiscreteScheduler"]
    _import_structure["scheduling_k_dpm_2_discrete"] = ["KDPM2DiscreteScheduler"]
    _import_structure["scheduling_karras_ve"] = ["KarrasVeScheduler"]
    _import_structure["scheduling_pndm"] = ["PNDMScheduler"]
    _import_structure["scheduling_repaint"] = ["RePaintScheduler"]
    _import_structure["scheduling_sde_ve"] = ["ScoreSdeVeScheduler"]
    _import_structure["scheduling_sde_vp"] = ["ScoreSdeVpScheduler"]
    _import_structure["scheduling_unclip"] = ["UnCLIPScheduler"]
    _import_structure["scheduling_unipc_multistep"] = ["UniPCMultistepScheduler"]
    _import_structure["scheduling_utils"] = ["KarrasDiffusionSchedulers", "SchedulerMixin"]
    _import_structure["scheduling_vq_diffusion"] = ["VQDiffusionScheduler"]
    _import_structure["scheduling_ddpm_wuerstchen"] = ["DDPMWuerstchenScheduler"]
69

70
71
72
73
74
75
try:
    if not is_flax_available():
        raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
    from ..utils.dummy_flax_objects import *  # noqa F403
else:
Dhruv Nair's avatar
Dhruv Nair committed
76
77
78
79
80
81
82
83
84
85
86
87
88
    _import_structure["scheduling_ddim_flax"] = ["FlaxDDIMScheduler"]
    _import_structure["scheduling_ddpm_flax"] = ["FlaxDDPMScheduler"]
    _import_structure["scheduling_dpmsolver_multistep_flax"] = ["FlaxDPMSolverMultistepScheduler"]
    _import_structure["scheduling_karras_ve_flax"] = ["FlaxKarrasVeScheduler"]
    _import_structure["scheduling_lms_discrete_flax"] = ["FlaxLMSDiscreteScheduler"]
    _import_structure["scheduling_pndm_flax"] = ["FlaxPNDMScheduler"]
    _import_structure["scheduling_sde_ve_flax"] = ["FlaxScoreSdeVeScheduler"]
    _import_structure["scheduling_utils_flax"] = [
        "FlaxKarrasDiffusionSchedulers",
        "FlaxSchedulerMixin",
        "FlaxSchedulerOutput",
        "broadcast_to_shape_from_left",
    ]
89

90

91
92
93
94
try:
    if not (is_torch_available() and is_scipy_available()):
        raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
Dhruv Nair's avatar
Dhruv Nair committed
95
96
97
98
99
100
101
102
103
104
    from ..utils import dummy_torch_and_scipy_objects  # noqa F403

    modules = {}
    for name in dir(dummy_torch_and_scipy_objects):
        if (not name.endswith("Scheduler")) or name.startswith("_"):
            continue
        modules[name] = getattr(dummy_torch_and_scipy_objects, name)

    _dummy_modules.update(modules)

105
else:
Dhruv Nair's avatar
Dhruv Nair committed
106
    _import_structure["scheduling_lms_discrete"] = ["LMSDiscreteScheduler"]
107
108
109
110
111

try:
    if not (is_torch_available() and is_torchsde_available()):
        raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
Dhruv Nair's avatar
Dhruv Nair committed
112
113
114
115
116
117
118
119
120
121
122
    from ..utils import dummy_torch_and_torchsde_objects  # noqa F403

    modules = {}
    for name in dir(dummy_torch_and_torchsde_objects):
        if (not name.endswith("Scheduler")) or name.startswith("_"):
            continue
        modules[name] = getattr(dummy_torch_and_torchsde_objects, name)

    _dummy_modules.update(modules)


123
else:
Dhruv Nair's avatar
Dhruv Nair committed
124
125
126
127
128
129
130
131
    _import_structure["scheduling_dpmsolver_sde"] = ["DPMSolverSDEScheduler"]

import sys


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