mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
exception → warning
This commit is contained in:
parent
0ee6703c1e
commit
2960d3b645
2 changed files with 2 additions and 2 deletions
|
@ -129,7 +129,7 @@ def convnext(
|
||||||
|
|
||||||
def add_convnext_block(y, dim, drop_prob=0, prefix=""):
|
def add_convnext_block(y, dim, drop_prob=0, prefix=""):
|
||||||
skip = y
|
skip = y
|
||||||
|
|
||||||
y = tf.keras.layers.DepthwiseConv2D(
|
y = tf.keras.layers.DepthwiseConv2D(
|
||||||
kernel_size=7,
|
kernel_size=7,
|
||||||
padding='same',
|
padding='same',
|
||||||
|
|
|
@ -29,7 +29,7 @@ def model_rainfallwater_segmentation(metadata, feature_dim_in, shape_water_out,
|
||||||
layer_next = do_convnext_inverse(layer_next, arch_name="convnext_i_tiny")
|
layer_next = do_convnext_inverse(layer_next, arch_name="convnext_i_tiny")
|
||||||
|
|
||||||
# TODO: An attention layer here instead of a dense layer, with a skip connection perhaps?
|
# TODO: An attention layer here instead of a dense layer, with a skip connection perhaps?
|
||||||
raise Exception("Error: read and implement attention from https://ieeexplore.ieee.org/document/9076883")
|
logger.warn("Warning: TODO implement attention from https://ieeexplore.ieee.org/document/9076883")
|
||||||
layer_next = tf.keras.layers.Dense(32)(layer_next)
|
layer_next = tf.keras.layers.Dense(32)(layer_next)
|
||||||
layer_next = tf.keras.layers.Conv2D(1, kernel_size=1, activation="softmax", padding="same")(layer_next)
|
layer_next = tf.keras.layers.Conv2D(1, kernel_size=1, activation="softmax", padding="same")(layer_next)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue