3d_triplet_testIMG.prototxt 1.14 KB
Newer Older
1 2 3 4 5 6
name: "3d_triplet"
input: "data"
input_dim: 1
input_dim: 1
input_dim: 64
input_dim: 64
7 8 9 10 11 12
layer {
  name: "conv1"
  type: "Convolution"
  bottom: "data"
  top: "conv1"
  convolution_param {
13 14
    num_output: 16
    kernel_size: 8
15 16 17 18 19 20 21 22 23 24 25 26 27 28
    stride: 1
  }
}
layer {
  name: "pool1"
  type: "Pooling"
  bottom: "conv1"
  top: "pool1"
  pooling_param {
    pool: MAX
    kernel_size: 2
    stride: 2
  }
}
29 30 31 32 33 34
layer {
  name: "relu1"
  type: "ReLU"
  bottom: "pool1"
  top: "pool1"
}
35 36 37 38 39 40
layer {
  name: "conv2"
  type: "Convolution"
  bottom: "pool1"
  top: "conv2"
  convolution_param {
41
    num_output: 7
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    kernel_size: 5
    stride: 1
  }
}
layer {
  name: "pool2"
  type: "Pooling"
  bottom: "conv2"
  top: "pool2"
  pooling_param {
    pool: MAX
    kernel_size: 2
    stride: 2
  }
}
57 58 59 60 61 62
layer {
  name: "relu2"
  type: "ReLU"
  bottom: "pool2"
  top: "pool2"
}
63 64 65 66 67 68
layer {
  name: "ip1"
  type: "InnerProduct"
  bottom: "pool2"
  top: "ip1"
  inner_product_param {
69
    num_output: 256
70 71 72
  }
}
layer {
73
  name: "relu3"
74 75 76 77 78 79 80
  type: "ReLU"
  bottom: "ip1"
  top: "ip1"
}
layer {
  name: "feat"
  type: "InnerProduct"
81
  bottom: "ip1"
82 83
  top: "feat"
  inner_product_param {
84
    num_output: 3
85 86
  }
}