Hello ,
if i have a trained neural network with softmax function for classification.
During the testing phase (prediction), can i use argmax function instead of softmax function ??!
For example, if the output of last layer before the softmax function is [2,4,2,1]. In case argmax function, the output will be [0,1,0,0] and i am looking for the largest value in my application.
This will help to reduce the complexity during the implementation process.