Skip to content
Snippets Groups Projects
Commit 6223bab5 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent dfde35c0
Branches
No related tags found
No related merge requests found
......@@ -1017,7 +1017,13 @@ class IcingIntensityFCN:
cnn = self.build_cnn()
print(cnn.shape, self.inputs[1].shape)
if self.USE_FLIGHT_ALTITUDE:
cnn = tf.keras.layers.concatenate([cnn, self.inputs[1]])
# cnn = tf.keras.layers.concatenate([cnn, self.inputs[1]])
# -- experimental
cnn_shape = cnn.shape
falt = tf.zeros((cnn_shape[0], cnn_shape[1] // 16, cnn_shape[2] // 16, 5))
falt[:, :, :, :] = self.inputs[1][:, 0, 0, :]
cnn = tf.keras.layers.concatenate([cnn, falt])
# ------------------------------------------------------------
self.build_fcl(cnn)
self.model = tf.keras.Model(self.inputs, self.logits)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment