Skip to content

Commit

Permalink
remove conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungwon-Lee committed Sep 18, 2022
1 parent d36fcc2 commit cc120fa
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions pl_bolts/models/gans/pix2pix/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,13 @@ def forward(self, x: Tensor) -> Tensor:

class DownSampleConv(nn.Module):
def __init__(
<<<<<<< HEAD
self,
in_channels: int,
out_channels: int,
kernel: int = 4,
strides: int = 2,
padding: int = 1,
batchnorm: bool = True,
=======
self,
in_channels: int,
out_channels: int,
kernel: int = 4,
strides: int = 2,
padding: int = 1,
batchnorm: bool = True
>>>>>>> 9a8ce2f (add test_pix2pix_components)
) -> None:
super().__init__()
layers = [nn.Conv2d(in_channels, out_channels, kernel, strides, padding)]
Expand Down

0 comments on commit cc120fa

Please sign in to comment.