mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-04 17:13:02 +00:00
dlr eo: this should fix it
This commit is contained in:
parent
9f1cee2927
commit
69b5ae8838
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ if PATH_CHECKPOINT is None:
|
|||
x = DilatedSpatialPyramidPooling(x)
|
||||
|
||||
input_a = tf.keras.layers.UpSampling2D(
|
||||
size=(image_size // 4 // x.shape[1], image_size // 4 // x.shape[2]), # <--- UPSAMPLE after pyramid
|
||||
size=(image_size // 4 // x.shape[1] * 2, image_size // 4 // x.shape[2] * 2), # <--- UPSAMPLE after pyramid
|
||||
interpolation="bilinear",
|
||||
)(x)
|
||||
input_b = resnet50.get_layer("conv2_block3_2_relu").output
|
||||
|
|
Loading…
Reference in a new issue