mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Quick Seamless Fixes
This commit is contained in:
parent
daa780940b
commit
c3b2a8cb27
@ -28,49 +28,30 @@ def _conv_forward_asymmetric(self, input, weight, bias):
|
|||||||
def set_seamless(model: Union[UNet2DConditionModel, AutoencoderKL], seamless_axes: List[str]):
|
def set_seamless(model: Union[UNet2DConditionModel, AutoencoderKL], seamless_axes: List[str]):
|
||||||
try:
|
try:
|
||||||
to_restore = []
|
to_restore = []
|
||||||
|
skipped_layers = 0
|
||||||
|
skip_second_resnet = True
|
||||||
|
skip_conv2 = True
|
||||||
|
|
||||||
for m_name, m in model.named_modules():
|
for m_name, m in model.named_modules():
|
||||||
if isinstance(model, UNet2DConditionModel):
|
if not isinstance(m, (nn.Conv2d, nn.ConvTranspose2d)):
|
||||||
if ".attentions." in m_name:
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if ".resnets." in m_name:
|
if isinstance(model, UNet2DConditionModel) and m_name.startswith("down_blocks.") and ".resnets." in m_name:
|
||||||
if ".conv2" in m_name:
|
# down_blocks.1.resnets.1.conv1
|
||||||
continue
|
_, block_num, _, resnet_num, submodule_name = m_name.split(".")
|
||||||
if ".conv_shortcut" in m_name:
|
block_num = int(block_num)
|
||||||
|
resnet_num = int(resnet_num)
|
||||||
|
|
||||||
|
# if block_num >= seamless_down_blocks:
|
||||||
|
if block_num >= len(model.down_blocks) - skipped_layers:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
"""
|
if resnet_num > 0 and skip_second_resnet:
|
||||||
if isinstance(model, UNet2DConditionModel):
|
|
||||||
if False and ".upsamplers." in m_name:
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if False and ".downsamplers." in m_name:
|
if submodule_name == "conv2" and skip_conv2:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if True and ".resnets." in m_name:
|
|
||||||
if True and ".conv1" in m_name:
|
|
||||||
if False and "down_blocks" in m_name:
|
|
||||||
continue
|
|
||||||
if False and "mid_block" in m_name:
|
|
||||||
continue
|
|
||||||
if False and "up_blocks" in m_name:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if True and ".conv2" in m_name:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if True and ".conv_shortcut" in m_name:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if True and ".attentions." in m_name:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if False and m_name in ["conv_in", "conv_out"]:
|
|
||||||
continue
|
|
||||||
"""
|
|
||||||
|
|
||||||
if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d)):
|
|
||||||
m.asymmetric_padding_mode = {}
|
m.asymmetric_padding_mode = {}
|
||||||
m.asymmetric_padding = {}
|
m.asymmetric_padding = {}
|
||||||
m.asymmetric_padding_mode["x"] = "circular" if ("x" in seamless_axes) else "constant"
|
m.asymmetric_padding_mode["x"] = "circular" if ("x" in seamless_axes) else "constant"
|
||||||
|
Loading…
Reference in New Issue
Block a user