Skip to content

Commit

Permalink
Resnet
Browse files Browse the repository at this point in the history
  • Loading branch information
YunYang1994 authored and YunYang1994 committed Oct 12, 2019
1 parent aeea074 commit 094c7a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 3-Neural_Network_Architecture/Resnet/Resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def call(self, x, training=False):
out = self.avg_pool(out)
out = tf.reshape(out, (out.shape[0], -1))
out = self.fc(out)
# return tf.argmax(tf.nn.softmax(out, axis=-1), axis=-1)
return tf.nn.softmax(out, axis=-1)

# Load and prepare the cifar10 dataset.
Expand Down

0 comments on commit 094c7a1

Please sign in to comment.