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

snapshot...

parent 8a3066e7
No related merge requests found
......@@ -902,12 +902,10 @@ class IcingIntensityFCN:
def build_model(self):
cnn = self.build_cnn()
# flat_1d = self.build_1d_cnn()
# flat = tf.keras.layers.concatenate([flat, flat_1d, flat_anc])
# flat = tf.keras.layers.concatenate([flat, flat_1d])
# self.build_dnn(flat)
## if self.USE_FLIGHT_ALTITUDE:
## flat = tf.keras.layers.concatenate([flat, self.inputs[1]])
if self.USE_FLIGHT_ALTITUDE:
fa = np.expand_dims(self.inputs[1], axis=1)
fa = np.expand_dims(fa, axis=1)
cnn = tf.keras.layers.concatenate([cnn, fa])
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