svishwa / crowdcount-mcnn

Single Image Crowd Counting via MCNN (Unofficial Implementation)
MIT License
499 stars 179 forks source link

relu #15

Closed cryax closed 6 years ago

cryax commented 6 years ago

Hi svishwa, I wonder why there're no relu layer in your model? (authors of "Single Image Crowd Counting via Multi Column Convolutional Neural Network" said that relu is adopted in their network.)

svishwa commented 6 years ago

Conv2d includes Conv layer + ReLU(). See the following definition of Conv2d in network.py

image