Skip to content

Commit

Permalink
ds
Browse files Browse the repository at this point in the history
  • Loading branch information
Paupiera committed Jan 9, 2024
1 parent 34d4e3a commit f74395f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cnn_mnist/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ class MyAwesomeModel(nn.Module):

"""My awesome model."""

def __init__(self, number_of_kernels, kernel_sizes, input_channels, xsize_input):
def __init__(
self, number_of_kernels, kernel_sizes, input_channels, xsize_input, empty=False
):
super().__init__()

self.convlayers = nn.ModuleList()
Expand Down

0 comments on commit f74395f

Please sign in to comment.