CNN
-
Softmax and Cross-Entropy with CNNMLAI/DeepLearning 2019. 10. 16. 15:56
1. Overview 2. Description How come two output values add up to one? 2.1 Softmax function(Normalized exponential function) $$f_{j}(z)=\frac{e^{zj}}{\sum_{k}e^{zk}}$$ Normally, the dog and the cat neurons would have any kind of real values. Applying the softmax function which is written up over there at the top, and that would bring these values to be between zero and one and it would make them a..
-
Convolutional Neural Networks(CNN)MLAI/DeepLearning 2019. 9. 30. 17:28
1. Overview In deep learning, a convolutional neural network (CNN, or ConvNet) is a class of deep neural networks, most commonly applied to analyzing visual imagery. CNNs are regularized versions of multilayer perceptrons. Multilayer perceptrons usually mean fully connected networks, that is, each neuron in one layer is connected to all neurons in the next layer. The "fully-connectedness" of the..