Skip to content

Commit 2d0257e

Browse files
revert default dropout
1 parent 4f13e0a commit 2d0257e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NN/Utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def call(self, x):
2727
coefs = tf.pow(self._base, powers)
2828
return tf.reduce_sum(x * coefs, axis=-1)
2929
############################################
30-
SMLP_GLOBAL_DROPOUT = 0.0
30+
SMLP_GLOBAL_DROPOUT = 0.01
3131
class sMLP(tf.keras.layers.Layer):
3232
def __init__(self, sizes, activation='linear', dropout=None, **kwargs):
3333
super().__init__(**kwargs)

0 commit comments

Comments
 (0)