Questions tagged [matconvnet]

MatConvNet is a MATLAB toolbox implementing Convolutional Neural Networks (CNNs) for computer vision applications.

2 questions
3
votes
0 answers

How does MatConvNet really compute the forward pass of the Batch Normalization transformation?

I was trying to make sure that BN worked the way I thought so I wanted to check how MatConvNet computed the forward pass of the batch normalization transform. I wrote a super duper simple script and checked BN manually but I can't get match…
2
votes
0 answers

How to overcome overfitting?

I am using MatConvNet for the classification two different pants. i am using MINST example architecture of 28x28 input image. the dataset I have for two classes are ~14000 images after data augmentation. 45% for training and testing and 10% for…