Skip to content

Commit 411532a

Browse files
committed
fix missing default
1 parent cb3fc61 commit 411532a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bayesflow/networks/mlp/mlp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class MLP(keras.Layer):
2020

2121
def __init__(
2222
self,
23-
widths: Sequence[int],
23+
widths: Sequence[int] = (256, 256),
2424
*,
2525
activation: str = "mish",
2626
kernel_initializer: str = "he_normal",

0 commit comments

Comments
 (0)