All Projects → rogertrullo → Receptive-Field-in-Pytorch

rogertrullo / Receptive-Field-in-Pytorch

Licence: other
Numerical Computation of Receptive Field in Pytorch

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Receptive-Field-in-Pytorch

Pytorch Practice
Some example scripts on pytorch
Stars: ✭ 166 (+191.23%)
Mutual labels:  pytorch-tutorial
Pytorch Beginner
pytorch tutorial for beginners
Stars: ✭ 2,603 (+4466.67%)
Mutual labels:  pytorch-tutorial
mrnet
Building an ACL tear detector to spot knee injuries from MRIs with PyTorch (MRNet)
Stars: ✭ 98 (+71.93%)
Mutual labels:  pytorch-tutorial
Dive Into Dl Pytorch
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。
Stars: ✭ 14,234 (+24871.93%)
Mutual labels:  pytorch-tutorial
Code Of Learn Deep Learning With Pytorch
This is code of book "Learn Deep Learning with PyTorch"
Stars: ✭ 2,262 (+3868.42%)
Mutual labels:  pytorch-tutorial
Book deeplearning in pytorch source
Stars: ✭ 236 (+314.04%)
Mutual labels:  pytorch-tutorial
A Pytorch Tutorial To Super Resolution
Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network | a PyTorch Tutorial to Super-Resolution
Stars: ✭ 157 (+175.44%)
Mutual labels:  pytorch-tutorial
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-70.18%)
Mutual labels:  pytorch-tutorial
A Pytorch Tutorial To Text Classification
Hierarchical Attention Networks | a PyTorch Tutorial to Text Classification
Stars: ✭ 184 (+222.81%)
Mutual labels:  pytorch-tutorial
pytorch-accelerated
A lightweight library designed to accelerate the process of training PyTorch models by providing a minimal, but extensible training loop which is flexible enough to handle the majority of use cases, and capable of utilizing different hardware options with no code changes required. Docs: https://pytorch-accelerated.readthedocs.io/en/latest/
Stars: ✭ 125 (+119.3%)
Mutual labels:  pytorch-tutorial
Captcha break
验证码识别
Stars: ✭ 2,268 (+3878.95%)
Mutual labels:  pytorch-tutorial
Yolo v3 tutorial from scratch
Accompanying code for Paperspace tutorial series "How to Implement YOLO v3 Object Detector from Scratch"
Stars: ✭ 2,192 (+3745.61%)
Mutual labels:  pytorch-tutorial
Pytorch Sentiment Analysis
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
Stars: ✭ 3,209 (+5529.82%)
Mutual labels:  pytorch-tutorial
A Pytorch Tutorial To Object Detection
SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection
Stars: ✭ 2,398 (+4107.02%)
Mutual labels:  pytorch-tutorial
Text-Classification-LSTMs-PyTorch
The aim of this repository is to show a baseline model for text classification by implementing a LSTM-based model coded in PyTorch. In order to provide a better understanding of the model, it will be used a Tweets dataset provided by Kaggle.
Stars: ✭ 45 (-21.05%)
Mutual labels:  pytorch-tutorial
Frontalization
Pytorch deep learning face frontalization model
Stars: ✭ 160 (+180.7%)
Mutual labels:  pytorch-tutorial
Pytorch1.0 Cn
PyTorch 1.0 官方文档 中文版,欢迎关注微信公众号:磐创AI
Stars: ✭ 215 (+277.19%)
Mutual labels:  pytorch-tutorial
deep-dream-pytorch
Pytorch implementation of DeepDream on VGG16 Network
Stars: ✭ 46 (-19.3%)
Mutual labels:  pytorch-tutorial
Duke-NLP-WS-2020
Duke Natural Language Processing Winter School 2020
Stars: ✭ 22 (-61.4%)
Mutual labels:  pytorch-tutorial
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+5896.49%)
Mutual labels:  pytorch-tutorial

Receptive-Field-in-Pytorch

Numerical Computation of Receptive Field in Pytorch

I present a simple pytorch code that computes numerically the Receptive Field (RF) of a convolutional network. It can work with very complicated networks in 2D, 3D, with dilation, skip/residual connections, etc.

  • In the Jupyter notebook I explain how can we compute the RF both analitycally and numerically. I show some code that computes both.

  • In the python file a simple function to compute it.

Requeriments

  • First you must change the max pooling layers of your network by average pooling and turn off any batchnorm and dropout that you might have. This is in order to avoid sparse gradients (More detailed explanation in the Jupyter Notebook).

  • You must provide also an numpy array that will be filled with ones and with the appropiate shape for your specific network.

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