NorbertZheng / read-papers

My paper reading notes.
MIT License
7 stars 0 forks source link

Sik-Ho Tang | Review: Maxout Network (Image Classification). #85

Closed NorbertZheng closed 1 year ago

NorbertZheng commented 1 year ago

Sik-Ho Tang. Review: Maxout Network (Image Classification).

NorbertZheng commented 1 year ago

Overview

Inthis story, Maxout Network, by Université de Montréal, is briefly reviewed. Ian J. GoodFellow, the first author, is also the inventor of Generative Adversarial Network (GAN). And Yoshua Bengio, the last author, just got the Turing Award recently this year (2019), which is the “Nobel Prize of computing”. These two authors plus the second last author Aaron Courville, three authors together, has also published the book “Deep learning”, through publisher MIT Press, in 2016 . And in this paper, for maxout network, it is published in 2013 ICML with over 1500 citations.

NorbertZheng commented 1 year ago

Maxout

image An MLP containing two maxout units.

$$ z{ij}=x^{T}W{...ij}+b_{ij}, $$

$$ h{i}(x)=\max{j\in [1,k]}z_{ij}, $$

$$ g(v)=h{1}(v)-h{2}(v), $$

The philosophy behind is that:

NorbertZheng commented 1 year ago

Explanations of Maxout in NIN

NorbertZheng commented 1 year ago

Results

MNIST

image Test error on permutation invariant MNIST.

image Test error on MNIST.

NorbertZheng commented 1 year ago

CIFAR-10

image Test error on CIFAR-10.

image

NorbertZheng commented 1 year ago

CIFAR-100

image CIFAR-100.

image Test error on CIFAR-100.

NorbertZheng commented 1 year ago

Street View House Numbers (SVHN)

image Test error on SVHN.

NorbertZheng commented 1 year ago

It is interesting to read through the paper to see how authors make use of neural network to achieve the propositions above. And there are also ablation studies of Maxout Network against other activation functions like Tanh or ReLU at the end of the paper.

NorbertZheng commented 1 year ago

Reference