All Projects → ai-med → Squeeze_and_excitation

ai-med / Squeeze_and_excitation

Licence: mit
PyTorch Implementation of 2D and 3D 'squeeze and excitation' blocks for Fully Convolutional Neural Networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Squeeze and excitation

Cascaded Fcn
Source code for the MICCAI 2016 Paper "Automatic Liver and Lesion Segmentation in CT Using Cascaded Fully Convolutional NeuralNetworks and 3D Conditional Random Fields"
Stars: ✭ 296 (+54.17%)
Mutual labels:  segmentation, fully-convolutional-networks
Fcn
Chainer Implementation of Fully Convolutional Networks. (Training code to reproduce the original result is available.)
Stars: ✭ 211 (+9.9%)
Mutual labels:  segmentation, convolutional-networks
U-Time
U-Time: A Fully Convolutional Network for Time Series Segmentation
Stars: ✭ 156 (-18.75%)
Mutual labels:  segmentation, fully-convolutional-networks
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (-59.9%)
Mutual labels:  segmentation, convolutional-networks
3dunet abdomen cascade
Stars: ✭ 91 (-52.6%)
Mutual labels:  segmentation, fully-convolutional-networks
Semanticsegpapercollection
Stars: ✭ 102 (-46.87%)
Mutual labels:  convolutional-networks, fully-convolutional-networks
Segmentation
Tensorflow implementation : U-net and FCN with global convolution
Stars: ✭ 101 (-47.4%)
Mutual labels:  segmentation, fully-convolutional-networks
Cn24
Convolutional (Patch) Networks for Semantic Segmentation
Stars: ✭ 125 (-34.9%)
Mutual labels:  segmentation, convolutional-networks
Antialiased Cnns
Repository has been moved: https://github.com/adobe/antialiased-cnns
Stars: ✭ 169 (-11.98%)
Mutual labels:  convolutional-networks
Vocal Remover
Vocal Remover using Deep Neural Networks
Stars: ✭ 178 (-7.29%)
Mutual labels:  segmentation
Keras unet plus plus
keras implementation of unet plus plus
Stars: ✭ 166 (-13.54%)
Mutual labels:  segmentation
Ssd Tensorflow
A Single Shot MultiBox Detector in TensorFlow
Stars: ✭ 169 (-11.98%)
Mutual labels:  fully-convolutional-networks
Naszilla
Naszilla is a Python library for neural architecture search (NAS)
Stars: ✭ 181 (-5.73%)
Mutual labels:  convolutional-networks
Eeg Dl
A Deep Learning library for EEG Tasks (Signals) Classification, based on TensorFlow.
Stars: ✭ 165 (-14.06%)
Mutual labels:  fully-convolutional-networks
3dgnn pytorch
3D Graph Neural Networks for RGBD Semantic Segmentation
Stars: ✭ 187 (-2.6%)
Mutual labels:  segmentation
Keraspersonlab
Keras-tensorflow implementation of PersonLab (https://arxiv.org/abs/1803.08225)
Stars: ✭ 163 (-15.1%)
Mutual labels:  segmentation
Pointnet2
PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space
Stars: ✭ 2,197 (+1044.27%)
Mutual labels:  segmentation
Miccai Lits2017
liver segmentation using deep learning
Stars: ✭ 188 (-2.08%)
Mutual labels:  fully-convolutional-networks
Imantics
📷 Reactive python package for managing, creating and visualizing different deep-learning image annotation formats
Stars: ✭ 184 (-4.17%)
Mutual labels:  segmentation
Awesome Cell Detection Segmentation
nucleus/cell and histopathology image classification,detection,segmentation
Stars: ✭ 173 (-9.9%)
Mutual labels:  segmentation

Squeeze and Excitation Blocks for Fully ConvNets

PyTorch Implementation of 'squeeze and excitation' blocks for Fully Convolutional Neural Networks

Authors: Abhijit Guha Roy, Shayan Siddiqui and Anne-Marie Rickmann

Manuscipt for details: https://arxiv.org/abs/1808.08127, https://arxiv.org/abs/1906.04649


New Additions

(i) 3D version of Spatial Squeeze and Channel Excitation (cSE) Block

(ii) 3D version of Channel Squeeze and Spatial Excitation (sSE) Block

(iii) 3D version of Concurrent Spatial and Channel 'Squeeze and Excitation' (scSE) Block

(iv) 3D Project and Excite Block (Link: https://arxiv.org/abs/1906.04649)

For using these 3D extensions, Please cite

@inproceedings{rickmann2019project,
  title={`Project \& Excite' Modules for Segmentation of Volumetric Medical Scans},
  author={Rickmann, Anne-Marie and Sarasua, Ignacio and Roy, Abhijit Guha and Navab, Nassir and Wachinger, Christian},
  booktitle={International Conference on Medical Image Computing and Computer-Assisted Intervention},
  year={2019},
  organization={Springer}
}

Implementation includes

(i) Spatial Squeeze and Channel Excitation (cSE) Block

Reference:

Hu, J., Shen, L. and Sun, G., 2018. Squeeze-and-excitation networks. In Proc. CVPR.

Link: https://arxiv.org/abs/1709.01507

(ii) Channel Squeeze and Spatial Excitation (sSE) Block

(iii) Concurrent Spatial and Channel 'Squeeze and Excitation' (scSE) Block

Please cite:

@inproceedings{roy2018concurrent,
  title={Concurrent Spatial and Channel ‘Squeeze \& Excitation’in Fully Convolutional Networks},
  author={Roy, Abhijit Guha and Navab, Nassir and Wachinger, Christian},
  booktitle={International Conference on Medical Image Computing and Computer-Assisted Intervention},
  pages={421--429},
  year={2018},
  organization={Springer}
}

Link: https://arxiv.org/abs/1803.02579

@article{roy2019recalibrating,
  title={Recalibrating Fully Convolutional Networks With Spatial and Channel “Squeeze and Excitation” Blocks},
  author={Roy, Abhijit Guha and Navab, Nassir and Wachinger, Christian},
  journal={IEEE transactions on medical imaging},
  volume={38},
  number={2},
  pages={540--549},
  year={2019},
  publisher={IEEE}
}

Link: https://arxiv.org/abs/1808.08127

Pre-requisites

You need to have following in order for this library to work as expected

  1. Python >= 3.5
  2. Pytorch >= 1.0.0
  3. Numpy >= 1.14.0

Installation

Always use the latest release. Use following command with appropriate version no(v1.0) in this particular case to install. You can find the link for the latest release in the release section of this github repo

pip install https://github.com/ai-med/squeeze_and_excitation/releases/download/v1.0/squeeze_and_excitation-1.0-py2.py3-none-any.whl

How to Use

Please use the following link to read the technical documentation

https://ai-med.github.io/squeeze_and_excitation/

Help us improve

Let us know if you face any issues. You are always welcome to report new issues and bugs and also suggest further improvements. And if you like our work hit that start button on top. Enjoy :)

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].