Skip to content

Commit

Permalink
Increase hidden size
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnabergoj committed Jul 9, 2024
1 parent 5a428b8 commit 9d9b2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalizing_flows/neural_networks/convnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, input_shape, n_outputs: int, kernels: Tuple[int, ...] = None)

self.blocks = nn.ModuleList([reducer] + blocks)

hidden_size_sqrt: int = 4
hidden_size_sqrt: int = 10
hidden_size = hidden_size_sqrt ** 2
self.blocks.append(
ConvModifier(
Expand Down

0 comments on commit 9d9b2e6

Please sign in to comment.