Skip to content

Commit dc02245

Browse files
committed
[no ci] FreeFormFlow MLP defaults: set dropout to 0
1 parent 82d088c commit dc02245

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bayesflow/experimental/free_form_flow/free_form_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class FreeFormFlow(InferenceNetwork):
3737
"activation": "mish",
3838
"kernel_initializer": "he_normal",
3939
"residual": True,
40-
"dropout": 0.05,
40+
"dropout": 0.0,
4141
"spectral_normalization": False,
4242
}
4343

@@ -46,7 +46,7 @@ class FreeFormFlow(InferenceNetwork):
4646
"activation": "mish",
4747
"kernel_initializer": "he_normal",
4848
"residual": True,
49-
"dropout": 0.05,
49+
"dropout": 0.0,
5050
"spectral_normalization": False,
5151
}
5252

0 commit comments

Comments
 (0)