Skip to content

Commit eaf9a8b

Browse files
committed
Reflect changes
1 parent 3cee5ae commit eaf9a8b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,5 @@ General Improvements:
8080
----------
8181

8282
1. Add ``bidirectional`` flag to ``SequentialNetwork`` and ``TimeSeriesTransformer`` for potential to improve
83-
performance
83+
performance.
84+
2. Deprecate name ``SequentialNetwork`` and use ``SequenceNetwork`` instead to avoid confusion with ``tf.keras.Sequential``.

bayesflow/default_settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def __init__(self, meta_dict: dict, mandatory_fields: list = []):
9898

9999
DEFAULT_SETTING_AFFINE_COUPLING = MetaDictSetting(
100100
meta_dict={
101-
"dense_args": dict(units=128, activation="relu", kernel_regularizer=tf.keras.regularizers.l2(5e-4)),
101+
"dense_args": dict(units=128, activation="relu", kernel_regularizer=tf.keras.regularizers.l2(1e-4)),
102102
"num_dense": 2,
103103
"spec_norm": False,
104104
"mc_dropout": False,
@@ -113,7 +113,7 @@ def __init__(self, meta_dict: dict, mandatory_fields: list = []):
113113

114114
DEFAULT_SETTING_SPLINE_COUPLING = MetaDictSetting(
115115
meta_dict={
116-
"dense_args": dict(units=128, activation="relu", kernel_regularizer=tf.keras.regularizers.l2(1e-3)),
116+
"dense_args": dict(units=128, activation="relu", kernel_regularizer=tf.keras.regularizers.l2(1e-4)),
117117
"num_dense": 2,
118118
"spec_norm": False,
119119
"mc_dropout": False,

0 commit comments

Comments
 (0)