mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-04 17:13:02 +00:00
LayerConvNextGamma: fix config serialisation bug
.....this is unlikely to be the problem as this bug is in an unused code path.
This commit is contained in:
parent
e7410fb480
commit
f39e4ade70
1 changed files with 1 additions and 1 deletions
|
@ -15,5 +15,5 @@ class LayerConvNeXtGamma(tf.keras.layers.Layer):
|
|||
def get_config(self):
|
||||
config = super(LayerConvNeXtGamma, self).get_config()
|
||||
|
||||
config.update({ "const": self.const.numpy(), "dim": self.dim })
|
||||
config.update({ "const_val": self.const.numpy(), "dim": self.dim })
|
||||
return config
|
||||
|
|
Loading…
Reference in a new issue