llSourcell / Convolutional_neural_network

This is the code for "Convolutional Neural Networks - The Math of Intelligence (Week 4)" By Siraj Raval on Youtube
369 stars 294 forks source link

layer sequence #2

Closed sosoxuc closed 5 years ago

sosoxuc commented 7 years ago

Confused about layer sequence

In the image there is "conv+relu" -> "pooling" -> "conv+relu" -> "pooling" In the steps there is "conv" -> "pooling" -> "relu" -> "conv" -> "pooling" -> "relu" In the code there is "conv" -> "relu" -> "conv" -> "relu" > "pooling"

So which one is correct ?