summaryrefslogtreecommitdiff
path: root/compiler/nnc/tests/acl_soft_backend/models/scale.prototxt
blob: b113056f91328ea39daea71cd724e396ae5ff5ad (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
name: "SCALENET"
layer {
  name: "input"
  type: "Input"
  top: "data"
  input_param {
    shape {
      dim: 1
      dim: 3
      dim: 4
      dim: 8
    }
  }
}
layer {
  name: "scale1"
  type: "Scale"
  bottom: "data"
  top: "scale1"
  param {
    lr_mult: 1
    decay_mult: 0
  }
  scale_param {
    filler {
      value: 2.71
    }
    bias_term: false
  }
}