-
Notifications
You must be signed in to change notification settings - Fork 27.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature request] Better tiling #308
Comments
Have you tried merging? |
try adding def patch_conv(**patch):
cls = torch.nn.Conv2d
init = cls.__init__
def __init__(self, *args, **kwargs):
return init(self, *args, **kwargs, **patch)
cls.__init__ = __init__
patch_conv(padding_mode='circular') to webui.py |
Sashimimochi
pushed a commit
to Sashimimochi/stable-diffusion-webui
that referenced
this issue
Apr 7, 2023
Sashimimochi
pushed a commit
to Sashimimochi/stable-diffusion-webui
that referenced
this issue
Apr 7, 2023
nne998
pushed a commit
to fjteam/stable-diffusion-webui
that referenced
this issue
Sep 26, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to implement this kind of tiling?
Sygil-Dev/sygil-webui#911
I'm finding I'm getting suboptimal results with the current tiling option.
The text was updated successfully, but these errors were encountered: