paper-with-me

Papers

Network In Network

2013-12-16 · Min Lin, Qiang Chen, Shuicheng Yan

We propose a novel deep network structure called "Network In Network" (NIN) to enhance model discriminability for local patches within the receptive field. The conventional convolutional layer uses linear filters followed by a nonlinear activation function to scan the input. Instead, we build micro neural networks with more complex structures to abstract the data within the receptive field. We instantiate the micro neural network with a multilayer perceptron, which is a potent function approximator. The feature maps are obtained by sliding the micro networks over the input in a similar manner as CNN; they are then fed into the next layer. Deep NIN can be implemented by stacking mutiple of the above described structure. With enhanced local modeling via the micro network, we are able to utilize global average pooling over feature maps in the classification layer, which is easier to interpret and less prone to overfitting than traditional fully connected layers. We demonstrated the state-of-the-art classification performances with NIN on CIFAR-10 and CIFAR-100, and reasonable performances on SVHN and MNIST datasets.

📄 PDF Abstract BibTeX arXiv:1312.4400

Code (17)

https://worksheets.codalab.org/worksheets/0x7b8f6fbc6b5c49c18ac7ca94aafaa1a7 공식 구현
MaximeVandegar/Papers-in-100-Lines-of-Code/tree/main/Network_In_Network pytorch
PowerOfDream/digitx tf
Prateek93a/DoodleAI pytorch
Spoorthy-gunda/Image-Classification tf
abel-leulseged/Quick-Draw
cchinchristopherj/Right-Whale-Unsupervised-Model tf
deeplearning987/DoodleClassifier pytorch
madhavambati/Face-Recognition tf
minoring/nin-tf2 tf
modelhub-ai/network-in-network mxnet
mushfiqurrahman250/Face-Recognition-master
musifahamran/FYP pytorch
nagadomi/kaggle-cifar10-torch7 torch
phuijse/MATIC pytorch
pipidog/CNLP tf
yuxiangalvin/DeepLOB-Model-Implementation-Project

Tasks

Face IdentificationGeneral ClassificationImage Classification

Methods 이 논문이 사용한 방법론

12+ Ways to Speak Qantas Customer Service via Phone or Chat Options: A Step by Step Guide 설명 없음
Global Average Pooling Global Average Pooling is a pooling operation designed to replace fully connected layers in classical CNNs. The idea is to generate one feature map for each corresponding…
Average Pooling 설명 없음
1x1 Convolution A 1 x 1 Convolution is a convolution with some special properties in that it can be used for dimensionality reduction,…