summaryrefslogtreecommitdiff
path: root/compiler/nnc/tests/acl_soft_backend/models/depthwise_convolution.prototxt
blob: b2b1ce5223b709512345cbfc9b25a5a48031a0c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: "DEPTHCONVNET"
layer {
  name: "input"
  type: "Input"
  top: "data"
  input_param {
    shape {
      dim: 1
      dim: 3
      dim: 4
      dim: 8
    }
  }
}
layer {
  name: "conv2_1/dw"
  type: "Convolution"
  bottom: "data"
  top: "conv2_1/dw"
  param {
    lr_mult: 1
    decay_mult: 1
  }
  convolution_param {
    num_output: 3
    bias_term: false
    pad: 1
    kernel_size: 3
    group: 3
    stride: 1
    weight_filler {
      type: "msra"
    }
  }
}