Skip to content

Instantly share code, notes, and snippets.

@Coderx7
Forked from erogol/maxout_layer
Created May 9, 2016 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Coderx7/9d48532d9036f3e15ee4b04774fcf707 to your computer and use it in GitHub Desktop.
Save Coderx7/9d48532d9036f3e15ee4b04774fcf707 to your computer and use it in GitHub Desktop.
maxout layer implementation for caffe library
layers {
name: "conv1A"
type: CONVOLUTION
bottom: "data"
top: "conv1A"
blobs_lr: 1
blobs_lr: 2
weight_decay: 1
weight_decay: 0
convolution_param {
num_output: 48
kernel_size: 9
stride: 1
}
}
layers {
name: "conv1B"
type: CONVOLUTION
bottom: "data"
top: "conv1B"
blobs_lr: 1
blobs_lr: 2
weight_decay: 1
weight_decay: 0
convolution_param {
num_output: 48
kernel_size: 9
stride: 1
}
}
layers {
name: "maxout1"
type: ELTWISE
bottom: "conv1A"
bottom: "conv1B"
top: "maxout1"
eltwise_param {
operation:MAX
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment