Spaces:
Paused
Paused
Commit
·
c6645fc
1
Parent(s):
36068ab
Fix bug
Browse files- controlnet_sync.py +4 -4
controlnet_sync.py
CHANGED
@@ -52,10 +52,10 @@ from diffusers.utils import (
|
|
52 |
)
|
53 |
from diffusers.utils.hub_utils import PushToHubMixin
|
54 |
|
55 |
-
from
|
56 |
-
from
|
57 |
-
from
|
58 |
-
from
|
59 |
|
60 |
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
|
61 |
|
|
|
52 |
)
|
53 |
from diffusers.utils.hub_utils import PushToHubMixin
|
54 |
|
55 |
+
from ldm.modules.attention import default, zero_module, checkpoint
|
56 |
+
from ldm.modules.diffusionmodules.openaimodel import UNetModel
|
57 |
+
from ldm.modules.diffusionmodules.util import timestep_embedding
|
58 |
+
from ldm.models.diffusion.sync_dreamer_attention import DepthWiseAttention
|
59 |
|
60 |
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
|
61 |
|