mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
model shape logging
This commit is contained in:
parent
00917b2698
commit
9da059d738
1 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,7 @@ def model_rainfallwater_mono(metadata, shape_water_out, model_arch_enc="convnext
|
|||
arch_name = model_arch_enc
|
||||
)(layer_input)
|
||||
|
||||
print("ENCODER output_shape", layer_next.shape)
|
||||
print("DEBUG:model ENCODER output_shape", layer_next.shape)
|
||||
|
||||
# BOTTLENECK
|
||||
layer_next = tf.keras.layers.Dense(name="cns.stage.bottleneck.dense2", units=feature_dim)(layer_input)
|
||||
|
@ -50,6 +50,8 @@ def model_rainfallwater_mono(metadata, shape_water_out, model_arch_enc="convnext
|
|||
layer_next = LayerStack2Image(target_width=4, target_height=4)(layer_next)
|
||||
# layer_next = tf.keras.layers.Reshape((4, 4, math.floor(feature_dim_in/(4*4))), name="cns.stable_begin.reshape")(layer_next)
|
||||
|
||||
print("DEBUG:model BOTTLENECK:stack2image output_shape", layer_next.shape)
|
||||
|
||||
layer_next = tf.keras.layers.Dense(name="cns.stage.begin.dense2", units=feature_dim)(layer_next)
|
||||
layer_next = tf.keras.layers.Activation(name="cns.stage_begin.relu2", activation="gelu")(layer_next)
|
||||
layer_next = tf.keras.layers.LayerNormalization(name="cns.stage_begin.norm2", epsilon=1e-6)(layer_next)
|
||||
|
|
Loading…
Reference in a new issue