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

snapshot...

parent f792eebe
No related branches found
No related tags found
No related merge requests found
......@@ -381,8 +381,10 @@ class IcingIntensityNN:
fc = tf.keras.layers.BatchNormalization()(fc)
print(fc.shape)
# activation = tf.nn.softmax # For multi-class
activation = tf.nn.sigmoid # For binary
if NumClasses == 2:
activation = tf.nn.sigmoid # For binary
else:
activation = tf.nn.softmax # For multi-class
# Called logits, but these are actually probabilities see activation
logits = tf.keras.layers.Dense(NumLogits, activation=activation)(fc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment