Skip to content

Instantly share code, notes, and snippets.

@samson-wang
samson-wang / rfs.md
Last active March 3, 2024 12:15
ResNet Receptive Field Size
layer resnet18 resnet34 resnet50 resnet101
conv1 7 7 7 7
maxpool 11 11 11 11
layer1 43 59 35 35
layer2 99 179 91 91
layer3 211 547 267 811
layer4 435 899 427 971
@shagunsodhani
shagunsodhani / PixelRNN.md
Created October 9, 2016 13:22
Summary of PixelRNN paper

Pixel Recurrent Neural Network

Introduction

  • Problem: Building an expressive, tractable and scalable image model which can be used in downstream tasks like image generation, reconstruction, compression etc.
  • Link to the paper

Model

  • Scan the image, one row at a time and one pixel at a time (within each row).
@sirleech
sirleech / gist:5055971
Last active October 2, 2017 06:59
web.py example with a few URLs and a JSON web service. Installed as mod_wsgi on apache, see conf at https://gist.github.com/sirleech/5055976
import web
import json
urls = (
'/', 'index',
'/random', 'random',
'/dump', 'dump'
)