mirror of
https://github.com/Stability-AI/stablediffusion.git
synced 2024-12-22 15:44:58 +00:00
Fix SpatialTransformer proj_out in attention.py
This commit is contained in:
parent
fc1488421a
commit
388d673583
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ class SpatialTransformer(nn.Module):
|
|||
stride=1,
|
||||
padding=0))
|
||||
else:
|
||||
self.proj_out = zero_module(nn.Linear(in_channels, inner_dim))
|
||||
self.proj_out = zero_module(nn.Linear(inner_dim, in_channels))
|
||||
self.use_linear = use_linear
|
||||
|
||||
def forward(self, x, context=None):
|
||||
|
|
Loading…
Reference in a new issue