All Projects → Queequeg92 → SE-Net-CIFAR

Queequeg92 / SE-Net-CIFAR

Licence: Apache-2.0 license
SE-Net Incorporates with ResNet and WideResnet on CIFAR-10/100 Dataset.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to SE-Net-CIFAR

Pytorch Cifar100
Practice on cifar100(ResNet, DenseNet, VGG, GoogleNet, InceptionV3, InceptionV4, Inception-ResNetv2, Xception, Resnet In Resnet, ResNext,ShuffleNet, ShuffleNetv2, MobileNet, MobileNetv2, SqueezeNet, NasNet, Residual Attention Network, SENet, WideResNet)
Stars: ✭ 2,423 (+4947.92%)
Mutual labels:  resnet, wideresnet
wideresnet-tensorlayer
Wide Residual Networks implemented in TensorLayer and TensorFlow.
Stars: ✭ 44 (-8.33%)
Mutual labels:  resnet, cifar
Portrait FCN and 3D Reconstruction
This project is to convert PortraitFCN+ (by Xiaoyong Shen) from Matlab to Tensorflow, then refine the outputs from it (converted to a trimap) using KNN and ResNet, supervised by Richard Berwick.
Stars: ✭ 61 (+27.08%)
Mutual labels:  resnet
PLSC
Paddle Large Scale Classification Tools,supports ArcFace, CosFace, PartialFC, Data Parallel + Model Parallel. Model includes ResNet, ViT, DeiT, FaceViT.
Stars: ✭ 113 (+135.42%)
Mutual labels:  resnet
DeepNetModel
记录每一个常用的深度模型结构的特点(图和代码)
Stars: ✭ 25 (-47.92%)
Mutual labels:  resnet
sharpmask
TensorFlow implementation of DeepMask and SharpMask
Stars: ✭ 31 (-35.42%)
Mutual labels:  resnet
sparsezoo
Neural network model repository for highly sparse and sparse-quantized models with matching sparsification recipes
Stars: ✭ 264 (+450%)
Mutual labels:  resnet
mxnet-retrain
Create mxnet finetuner (retrain) for mac/linux ,no need install docker and supports CPU, GPU(eGpu/cudnn).support the inception,resnet ,squeeznet,mobilenet...
Stars: ✭ 32 (-33.33%)
Mutual labels:  resnet
PyTorch-LMDB
Scripts to work with LMDB + PyTorch for Imagenet training
Stars: ✭ 49 (+2.08%)
Mutual labels:  resnet
Deep-learning-for-contact map v2
Prediction of protein contact map
Stars: ✭ 19 (-60.42%)
Mutual labels:  resnet
awesome-computer-vision-models
A list of popular deep learning models related to classification, segmentation and detection problems
Stars: ✭ 419 (+772.92%)
Mutual labels:  resnet
tensorflow-classification-network
实现遇到的分类网络(持续更新)
Stars: ✭ 19 (-60.42%)
Mutual labels:  resnet
chainer-grad-cam
Chainer implementation of Grad-CAM
Stars: ✭ 20 (-58.33%)
Mutual labels:  resnet
LibtorchTutorials
This is a code repository for pytorch c++ (or libtorch) tutorial.
Stars: ✭ 463 (+864.58%)
Mutual labels:  resnet
Xtreme-Vision
A High Level Python Library to empower students, developers to build applications and systems enabled with computer vision capabilities.
Stars: ✭ 77 (+60.42%)
Mutual labels:  resnet
SAN
[ECCV 2020] Scale Adaptive Network: Learning to Learn Parameterized Classification Networks for Scalable Input Images
Stars: ✭ 41 (-14.58%)
Mutual labels:  resnet
Distributed-ResNet-Tensorflow
A Distributed ResNet on multi-machines each with one GPU card.
Stars: ✭ 20 (-58.33%)
Mutual labels:  resnet
DeepMushroom
Image classification of Fungus using ResNet
Stars: ✭ 64 (+33.33%)
Mutual labels:  resnet
MIT-Driverless-CV-TrainingInfra
PyTorch pipeline of MIT Driverless Computer Vision paper(2020)
Stars: ✭ 89 (+85.42%)
Mutual labels:  resnet
DMPfold
De novo protein structure prediction using iteratively predicted structural constraints
Stars: ✭ 52 (+8.33%)
Mutual labels:  resnet

SE-Net Incorporates with ResNet and WideResnet on CIFAR-10/100 Dataset


This is a SE-Net implementation based on "Squeeze-and-Excitation Networks" [3] on CVPR 2017 "Beyond Imagenet" workshop.
We combine SE Module with ResNet-164 and WideResnet28-10 to construct SeResNet-164 and SeWideResNet28-10 respectively. For details of ResNet-164 and WideResNet28-10, please refers to the original papers [1] and [2].
We evaluate SeResNet-164 and SeWideResNet28-10 on cifar-10 and cifar-100 datasets. For details of the hyperparameters and training processes, please refer to the /scripts folder.

SeResNet-164 VS ResNet-164 on cifar-10:

Accuracy: 95.12 vs 94.92 (94.54 reported by [1])
image

SeResNet-164 VS ResNet-164 on cifar-100:

Accuracy: 78.09 vs 76.53 (75.67 reported by [1])
image

SeWideResNet28-10 VS WideResNet28-10 on cifar-10:

Accuracy: both around 96.10 (96.00 reported by [2])
image

SeWideResNet28-10 VS WideResNet28-10 on cifar-100:

Accuracy: both around 81.2 (80.75 reported by [2])
image

Coarse Conclusion:

SE Module seems to work better with thin networks than wide networks on CIFAR-10 and CIFAR-100 datasets.

To-Do:

More networks with SE Module.
Welcome to make contributions!

Pre-requisites:

pytorch http://pytorch.org/
tensorboard https://www.tensorflow.org/get_started/summaries_and_tensorboard
tensorboard-pytorch https://github.com/lanpa/tensorboard-pytorch

How to Run:

# cd to the /scripts folder.
cd /path-to-this-repository/scripts  
# run the shells.
sh resnet164.sh

References:

[1] He, Kaiming, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. "Identity mappings in deep residual networks." In European Conference on Computer Vision, pp. 630-645. Springer International Publishing, 2016.
[2] Zagoruyko, Sergey, and Nikos Komodakis. "Wide residual networks." arXiv preprint arXiv:1605.07146 (2016).
[3] Hu, Jie, Li Shen, and Gang Sun. "Squeeze-and-Excitation Networks." arXiv preprint arXiv:1709.01507 (2017).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].