Skip to content
Snippets Groups Projects
Commit 68933c07 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 987d80eb
Branches
No related tags found
No related merge requests found
...@@ -220,8 +220,7 @@ class IcingIntensityFCN: ...@@ -220,8 +220,7 @@ class IcingIntensityFCN:
self.X_img = tf.keras.Input(shape=(None, None, n_chans)) self.X_img = tf.keras.Input(shape=(None, None, n_chans))
self.inputs.append(self.X_img) self.inputs.append(self.X_img)
#self.inputs.append(tf.keras.Input(shape=(None, None, 5))) self.inputs.append(tf.keras.Input(shape=(None, None, 5)))
self.inputs.append(tf.keras.Input(shape=(5)))
self.flight_level = 0 self.flight_level = 0
...@@ -947,6 +946,7 @@ class IcingIntensityFCN: ...@@ -947,6 +946,7 @@ class IcingIntensityFCN:
def build_model(self): def build_model(self):
cnn = self.build_cnn() cnn = self.build_cnn()
print(cnn.shape, self.inputs[1].shape)
if self.USE_FLIGHT_ALTITUDE: if self.USE_FLIGHT_ALTITUDE:
cnn = tf.keras.layers.concatenate([cnn, self.inputs[1]]) cnn = tf.keras.layers.concatenate([cnn, self.inputs[1]])
self.build_fcl(cnn) self.build_fcl(cnn)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment