mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore: ruff
This commit is contained in:
parent
7019d93ff0
commit
64fb15e117
@ -26,7 +26,7 @@ class DoubleConvBlock(torch.nn.Module):
|
|||||||
in_channels=input_channel, out_channels=output_channel, kernel_size=(3, 3), stride=(1, 1), padding=1
|
in_channels=input_channel, out_channels=output_channel, kernel_size=(3, 3), stride=(1, 1), padding=1
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
for i in range(1, layer_number):
|
for _i in range(1, layer_number):
|
||||||
self.convs.append(
|
self.convs.append(
|
||||||
torch.nn.Conv2d(
|
torch.nn.Conv2d(
|
||||||
in_channels=output_channel,
|
in_channels=output_channel,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user